Dec16 early test
A downloadable game for Windows
Don't mind the Game Jam thing as it doesn't even follow the first steps of the rules so this is just for testing
This is a emulated cpu for my game Continuity, decided to upload a early build Dec16 in its early state, you can program it using the program.txt and documentation below. Didn't spend much time working on this as I'm currently developing Tahoma 0.4.0 which is a massive update for the game, expect bugs.
Note: this is just basic syntax and its not a finished thing from the final release of the game. You require Windows to run this.
IMPORTANT NOTE: YOU NEED TO HAVE .NET 10 INSTALLED IN ORDER TO RUN THIS!
Documentation:
LDA #number // load value into Registry A
LDB #number // load value into Registry B
ADD #number // add number to current value in Registry A
SUB #number // remove number from current value in Registry A
MUL #number // multiply number by current value in Registry A
DIV #number // divide number by current value in Registry A
MOV // move the value from Registry A to Registry B, overriding Registry B value
PRINT #number from ASCII character codes // print a letter to the console
HALT // stop program execution
Simple Program:
LDA #2 // load value 2 to registry a
LDB #4 // load value 4 to registry b
ADD #2 // add 2 to registry b
MOV // move registry a value to registry b, overrides existing registry b value
MUL #2 // multiply registry A value by 2
PRINT #65 // prints letter A from ASCII character codes
HALT // stop program execution
| Published | 16 days ago |
| Status | Prototype |
| Platforms | Windows |
| Author | Ravin |
| Content | No generative AI was used |

Leave a comment
Log in with itch.io to leave a comment.