Mirror of CollapseOS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
780B

  1. .equ USER_CODE 0x4800
  2. .equ USER_RAMSTART 0x6000
  3. .equ FS_HANDLE_SIZE 8
  4. .equ BLOCKDEV_SIZE 8
  5. ; *** JUMP TABLE ***
  6. .equ strncmp 0x03
  7. .equ addDE 0x06
  8. .equ addHL 0x09
  9. .equ upcase 0x0c
  10. .equ unsetZ 0x0f
  11. .equ intoDE 0x12
  12. .equ intoHL 0x15
  13. .equ writeHLinDE 0x18
  14. .equ findchar 0x1b
  15. .equ parseHex 0x1e
  16. .equ parseHexPair 0x21
  17. .equ blkSel 0x24
  18. .equ blkSet 0x27
  19. .equ fsFindFN 0x2a
  20. .equ fsOpen 0x2d
  21. .equ fsGetC 0x30
  22. .equ cpHLDE 0x33
  23. .equ parseArgs 0x36
  24. .equ _blkGetC 0x39
  25. .equ _blkPutC 0x3c
  26. .equ _blkSeek 0x3f
  27. .equ _blkTell 0x42
  28. .equ printstr 0x45