home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / assemblr / tools / pcmac / ordemo.asm < prev    next >
Assembly Source File  |  1991-05-22  |  259b  |  18 lines

  1. ;ORDEMO.ASM
  2. ;Demo program for the dw and dd directives
  3.         dw    1234h
  4.         dd    12345678h
  5. #dw hl
  6.         dw    1234h
  7.         dd    12345678h
  8. #dd hl
  9.         dw    1234h
  10.         dd    12345678h
  11. #dw    lh
  12.         dw    1234h
  13.         dd    12345678h
  14. #dd lh
  15.         dw    1234h
  16.         dd    12345678h
  17. ;End of the file ORDEMO.ASM
  18.