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.

34 lines
668B

  1. .equ USER_CODE 0xc200
  2. ; Make ed fit in SMS's memory
  3. .equ ED_BUF_MAXLINES 0x100
  4. .equ ED_BUF_PADMAXLEN 0x800
  5. ; Make zasm fit in SMS's memory
  6. .equ ZASM_REG_MAXCNT 0x80
  7. .equ ZASM_LREG_MAXCNT 0x10
  8. .equ ZASM_REG_BUFSZ 0x800
  9. .equ ZASM_LREG_BUFSZ 0x100
  10. ; *** JUMP TABLE ***
  11. .equ strncmp 0x03
  12. .equ upcase @+3
  13. .equ findchar @+3
  14. .equ parseHex @+3
  15. .equ parseHexPair @+3
  16. .equ blkSel @+3
  17. .equ blkSet @+3
  18. .equ fsFindFN @+3
  19. .equ fsOpen @+3
  20. .equ fsGetB @+3
  21. .equ fsPutB @+3
  22. .equ fsSetSize @+3
  23. .equ printstr @+3
  24. .equ _blkGetB @+3
  25. .equ _blkPutB @+3
  26. .equ _blkSeek @+3
  27. .equ _blkTell @+3
  28. .equ printcrlf @+3
  29. .equ stdioPutC @+3
  30. .equ stdioReadLine @+3