grammerdata.z80 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. sinTable:
  2. .db 0,3,6,9,13,16,19,22,25,28,31,34,37,40,43,46
  3. .db 49,52,55,58,60,63,66,68,71,74,76,79,81,84,86,88
  4. .db 91,93,95,97,99,101,103,105,106,108,110,111,113,114,116,117
  5. .db 118,119,121,122,122,123,124,125,126,126,127,127,127,128,128,128
  6. StrVersion:
  7. ;Accounting for the times you haven't updated this.
  8. .db "Grammer v2.50.9.8",0
  9. FrequencyLUT:
  10. .dw 2508,2367,2234,2109,1990,1879,1773,1674,1580,1491,1407,1328
  11. .dw 1254,1184,1117,1054,995,939,887,837,790,746,704,664
  12. .dw 627,592,559,527,498,470,443,418,395,373,352,332
  13. .dw 313,296,279,264,249,235,222,209,197,186,176,166
  14. .dw 157,148,140,132,124,117,111,105,99,93,88,83
  15. .dw 78,74,70,66,62,59,55,52,49,47,44,42
  16. .dw 39,37,35,33,31,29,28,26,25,23,22,21
  17. .dw 20,18,17,16,16,15,14,13,12,12,11,10
  18. FontSet:
  19. ;fixed-width font
  20. #include "fonts/ffont.asm"
  21. vFont:
  22. ;variable-width font
  23. #include "fonts/vfont.asm"
  24. float_pi: .db $DB,$0F,$49,$81
  25. float_e: .db $54,$f8,$2d,$81
  26. GramTempName:
  27. .db 16h,"GramTemp"
  28. GVarData:
  29. .db 15h,"GVarData"
  30. StrMirage:
  31. .db "MirageOS prg",0
  32. StrION:
  33. .db "ION program",0
  34. StrDCS:
  35. .db "DCS program",0
  36. StrGram:
  37. .db "Broken Shell",0
  38. s_PkgNotFound:
  39. .db "PkgNotFound",0
  40. s_StackOverflow_pop:
  41. s_StackOverflow_push:
  42. .db "StackOverflw",0
  43. #ifndef INCLUDE_GRAMPKG
  44. s_grampkg: .db 15h,"Grampkg",0
  45. #endif
  46. s_appv: .db "appv",0
  47. s_prog: .db "prgm"
  48. s_null:
  49. .db 0