stage0_monitor.hex0 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. ## Copyright (C) 2016 Jeremiah Orians
  2. ## This file is part of stage0.
  3. ##
  4. ## stage0 is free software: you can redistribute it and/or modify
  5. ## it under the terms of the GNU General Public License as published by
  6. ## the Free Software Foundation, either version 3 of the License, or
  7. ## (at your option) any later version.
  8. ##
  9. ## stage0 is distributed in the hope that it will be useful,
  10. ## but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. ## GNU General Public License for more details.
  13. ##
  14. ## You should have received a copy of the GNU General Public License
  15. ## along with stage0. If not, see <http://www.gnu.org/licenses/>.
  16. # :start 0
  17. E0002D2B0001 # LOADUI R11 1 ; Our toggle
  18. E0002D2D0600 # LOADUI R13 0x600 ; Where we are starting our Stack
  19. # ;; R14 will be storing our condition
  20. 0D00002F # FALSE R15 ; Our holder
  21. # ;; Prep TAPE_01
  22. E0002D201100 # LOADUI R0 0x1100
  23. 42100001 # FOPEN_WRITE
  24. # ;; Prep TAPE_02
  25. E0002D201101 # LOADUI R0 0x1101
  26. 42100001 # FOPEN_WRITE
  27. # :loop 24
  28. E0002D210000 # LOADUI R1 0 ; Read from tty
  29. 42100100 # FGETC ; Read a Char
  30. E000A030000d # CMPSKIPI.NE R0 13 ; Replace all CR
  31. E0002D20000a # LOADUI R0 10 ; WIth LF
  32. 42100200 # FPUTC ; Display the Char to User
  33. # ;; Check for Ctrl-D
  34. E000A0300004 # CMPSKIPI.NE R0 4
  35. 3C000112 # JUMP @finish
  36. # ;; Check for EOF
  37. E0002CC0010c # JUMP.NP R0 @finish
  38. # ;; Write out unprocessed byte
  39. E0002D211101 # LOADUI R1 0x1101 ; Write to TAPE_02
  40. 42100200 # FPUTC ; Print the Char
  41. # ;; Convert byte to nybble
  42. E0002D0D003e # CALLI R13 @hex ; Convert it
  43. # ;; Get another byte if nonhex
  44. E0002CC0ffc0 # JUMP.NP R0 @loop ; Don't use nonhex chars
  45. # ;; Deal with the case of second nybble
  46. E0002C9B000e # JUMP.Z R11 @second_nybble ; Jump if toggled
  47. # ;; Process first byte of pair
  48. E100B0F0000f # ANDI R15 R0 0x0F ; Store First nibble
  49. 0D00002B # FALSE R11 ; Flip the toggle
  50. 3C00ffac # JUMP @loop
  51. # ;; Combined second nybble in pair with first
  52. # :second_nybble 78
  53. E0002D5F0004 # SL0I R15 4 ; Shift our first nibble
  54. E100B000000f # ANDI R0 R0 0x0F ; Mask out top
  55. 0500000F # ADD R0 R0 R15 ; Combine nibbles
  56. # ;; Writeout and prepare for next cycle
  57. E0002D1B0001 # LOADI R11 1 ; Flip the toggle
  58. E0002D211100 # LOADUI R1 0x1100 ; Write the combined byte
  59. 42100200 # FPUTC ; To TAPE_01
  60. 3C00ff88 # JUMP @loop ; Try to get more bytes
  61. # :hex 9c
  62. # ;; Deal with line comments starting with #
  63. E1001FE00023 # CMPUI R14 R0 35
  64. E0002C5E007e # JUMP.E R14 @ascii_comment
  65. # ;; Deal with line comments starting with ;
  66. E1001FE0003b # CMPUI R14 R0 59
  67. E0002C5E0072 # JUMP.E R14 @ascii_comment
  68. # ;; Deal with all ascii less than '0'
  69. E1001FE00030 # CMPUI R14 R0 48
  70. E0002C8E005e # JUMP.L R14 @ascii_other
  71. # ;; Deal with '0'-'9'
  72. E1001FE00039 # CMPUI R14 R0 57
  73. E0002C7E0034 # JUMP.LE R14 @ascii_num
  74. # ;; Deal with all ascii less than 'A'
  75. E1001FE00041 # CMPUI R14 R0 65
  76. E0002C8E0046 # JUMP.L R14 @ascii_other
  77. # ;; Deal with 'A'-'F'
  78. E1001FE00046 # CMPUI R14 R0 70
  79. E0002C7E0030 # JUMP.LE R14 @ascii_high
  80. # ;; Deal with all ascii less than 'a'
  81. E1001FE00061 # CMPUI R14 R0 97
  82. E0002C8E002e # JUMP.L R14 @ascii_other
  83. # ;; Deal with 'a'-'f'
  84. E1001FE00066 # CMPUI R14 R0 102
  85. E0002C7E000e # JUMP.LE R14 @ascii_low
  86. # ;; Ignore the rest
  87. 3C00001e # JUMP @ascii_other
  88. # :ascii_num 100
  89. E10011000030 # SUBUI R0 R0 48
  90. 0D01001D # RET R13
  91. # :ascii_low 10a
  92. E10011000057 # SUBUI R0 R0 87
  93. 0D01001D # RET R13
  94. # :ascii_high 114
  95. E10011000037 # SUBUI R0 R0 55
  96. 0D01001D # RET R13
  97. # :ascii_other 11e
  98. 0D000030 # TRUE R0
  99. 0D01001D # RET R13
  100. # :ascii_comment 126
  101. E0002D210000 # LOADUI R1 0 ; Read from tty
  102. 42100100 # FGETC ; Read another char
  103. E000A030000d # CMPSKIPI.NE R0 13 ; Replace all CR
  104. E0002D20000a # LOADUI R0 10 ; WIth LF
  105. 42100200 # FPUTC ; Let the user see it
  106. E1001FE0000a # CMPUI R14 R0 10 ; Stop at the end of line
  107. E0002D211101 # LOADUI R1 0x1101 ; Write to TAPE_02
  108. 42100200 # FPUTC ; The char we just read
  109. E0002C6Effd0 # JUMP.NE R14 @ascii_comment ; Otherwise keep looping
  110. 3C00ffc4 # JUMP @ascii_other
  111. # :finish 15a
  112. E0002D201100 # LOADUI R0 0x1100 ; Close TAPE_01
  113. 42100002 # FCLOSE
  114. E0002D201101 # LOADUI R0 0x1101 ; Close TAPE_02
  115. 42100002 # FCLOSE
  116. FFFFFFFF # HALT