-
-
Notifications
You must be signed in to change notification settings - Fork 1
SAP1Emu Binary File Format
Bob Baker edited this page Apr 19, 2020
·
27 revisions
1The SAP1Emu Binary File has some pretty simple requirements.
- All Binary Files must end with the ".b" file extension
- Each binary file must have exactly 16 lines of code
- Each line of code must contain only 1's and 0's with no nibbles-spaces or trailing end-spaces
- Each line of code must be terminated with a newline (CR LF for Windows and LF for Linux/macOS)
- Each line of code must be 8-bits wide
On the Assembly File page, the example used the following program:
LDA 0xD
ADD 0xE
ADD 0xF
OUT 0x0
HLT 0x0
...
0x2 0x8
0x0 0xF
0x0 0xD
© Bob Baker 2020