Advertisement
Guest User

ToCS

a guest
Nov 14th, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. SOB program {jump to program}
  2. SOB Int1 {jump to Int1}
  3. SOB Int2 {jump to Int2}
  4. SOB Int3 {jump to Int3}
  5. SOB Int4 {jump to Int4}
  6. program: POB asciiCode
  7. OUT 2
  8. SOB program
  9. STP
  10. Int1:
  11. POB one
  12. OUT 2
  13. RFI
  14. Int2:
  15. POB two
  16. OUT 2
  17. RFI
  18. Int3:
  19. POB three
  20. OUT 2
  21. RFI
  22. Int4:
  23. POB four
  24. OUT 2
  25. RFI
  26.  
  27. asciiCode: RST 46
  28. one: RST 49
  29. two: RST 50
  30. three: RST 51
  31. four: RST 52
  32. stp: RST 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement