Sooooo
I have almost no knowledge of how a computer actually works other than its main components, but I am a little determined on this project and don’t plan on giving up soon. However, I have encountered an issue. Yes, I have realized that I will not have enough counters to run an actual game on the PC, so at this point it is just an overly complicated textpad.
I have created a functioning byte of RAM that currently just sends the binary code to a text property. I am only using the text property as a model, and I need to turn a byte into 8 singular bits in order to send the RAM to the program memory. Right now, I only have the characters 1 and ! functioning
Unnecessarily low quality gif to show my issue
GIF
Basically, the byte is one property, and I need to turn it into 8 different properties to store it properly.
Ty for taking the time to read this
Edit :
I feel like this needs more explanation
So I’m using counters as bits of data. 8 counters is a byte of data. Currently for my program memory, I’m just using a text property to model it and not using counters to represent the data. The only problem, is that the byte of RAM for the letter you are going to type, is converted from 8 values into 1 value. I need to convert 1 value into 8 values to send the binary code to the program memory counters.