home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume4 / aaa / anon / card next >
Encoding:
Text File  |  1986-11-30  |  558 b   |  21 lines

  1. #m anon    what machine this is for (first line only)
  2. #foo    comment
  3. x;y    two successive bytes
  4. x y    two successive bytes
  5. 07    octal
  6. 0x7    hex
  7. 'c    character constant
  8. '\n    ditto
  9. foo:    label
  10. x=100    definition (numbers only)
  11. .=100    setting location counter (numbers only)
  12. .=.+5    bumping location counter (numbers only)
  13. .text    what it says
  14. .data    ditto
  15. .bss    ditto
  16. =thing    two-byte constant
  17. /thing    lower byte of 16-bit thing
  18. \thing    upper byte of 16-bit thing
  19. %thing    lower byte of 16-bit thing as an offset relative to PC
  20. %%thing    upper byte of 16-bit thing as an offset relative to PC
  21.