Return to previous page Return to menu Go to next page

 
< When each module is created individually,

When these two modules are linked (joined),

: As shown in the example above, similar parts of the modules created separately are grouped together when linking. can be set to . In general, CSEG is dedicated to programs and DSEG is dedicated to data. It is often used as . . BSEG is unique to this program (SDSS). is a general-purpose segment that can be used arbitrarily.

END

  Format  END 
Description Indicates the end of the program. Programs after the END statement are ignored.
[Example] org $ 8000 add add d0, d1 END


Return to previous page Return to menu Go to next page