?login_element?

Subversion Repositories NedoOS

Rev

Rev 126 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1.     OUTPUT "srcStdIn.bin"
  2.  
  3.     INCLUDE "srcStdIn.i.asm"
  4.  
  5.     ORG $8000       ;; uncut align blocks
  6.     ALIGN 4
  7.     DB  1
  8.     ALIGN 4
  9.     DB  2, 3
  10.     ALIGN 4
  11.     DB  4, 5, 6
  12.     ALIGN 4
  13.     DB  7, 8, 9, 10
  14.     ALIGN 4
  15.  
  16.     ORG $8100       ;; cut to 3 and "..." align blocks
  17.     ALIGN 16
  18.     DB  1
  19.     ALIGN 16
  20.     DB  2, 3
  21.     ALIGN 16
  22.     DB  4, 5, 6
  23.     ALIGN 16
  24.     DB  7, 8, 9, 10
  25.     ALIGN 16
  26.  
  27.     ORG $8200       ;; some should fit fully, some should be cut
  28.     ALIGN 8
  29.     DB   1,  2,  3
  30.     ALIGN 8
  31.     DB   4,  5,  6,  7
  32.     ALIGN 8
  33.     DB   8,  9, 10, 11, 12
  34.     ALIGN 8
  35.     DB  13, 14, 15, 16, 17, 18
  36.     ALIGN 8
  37.  
  38.     ORG $8300       ;; same as $8200 case, crammed into single source line
  39.     ALIGN 8:DB 1,2,3:ALIGN 8:DB 4,5,6,7:ALIGN 8:DB 8,9,10,11,12:ALIGN 8:DB 13,14,15,16,17,18:ALIGN 8
  40.  
  41.     ORG $9000       ;; BLOCK emit
  42.     BLOCK   1, 1
  43.     BLOCK   2, 2
  44.     BLOCK   3, 3
  45.     BLOCK   4, 4
  46.     BLOCK   5, 5
  47.     BLOCK   6, 6
  48.     BLOCK   7, 7
  49.     BLOCK   8, 8
  50.