Subversion Repositories pentevo

Rev

Blame | Last modification | View Log | Download | RSS feed | ?url?

  1.         cpu     6809
  2.         page    0
  3.  
  4.         dottedstructs   on
  5.  
  6. commin  struct
  7. command  byt ?
  8.          union
  9. disk      struct
  10. slot       byt ?
  11. size       adr ?
  12. type       byt ?
  13. gameid     byt ?, ?, ?, ?, ?, ?, ?, ?
  14. g2         byt ?, ?, ?, ?, ?, ?, ?, ?
  15. disk      endstruct
  16. drive     struct
  17. letter     byt ?
  18. name       byt [10]?
  19. drive     endstruct
  20.          endunion
  21. commin  endstruct
  22.  
  23.         org     0
  24.  
  25.         phase   256
  26. a       commin
  27.         dephase
  28.  
  29.         adr     commin.len
  30.         adr     commin.disk.len
  31.         adr     commin.drive.len
  32.  
  33.         adr     a.command
  34.         adr     a.disk.slot
  35.         adr     a.disk.size
  36.         adr     a.disk.type
  37.         adr     a.disk.gameid
  38.         adr     a.disk.g2
  39.         adr     a.drive.letter
  40.         adr     a.drive.name
  41.  
  42.