folder and such for coding

This commit is contained in:
2024-11-19 14:32:39 -05:00
parent a176969850
commit 7c0865bb67
5 changed files with 1745 additions and 1 deletions

View File

@@ -21,4 +21,4 @@ Prototype 1 is currently in progress. It will be a much simpler system. It will
## License ## License
This project is licensed under the MIT license. This applies to both the hardware (schematics, bill of materials, pcb layouts) and documentation. This does *not* apply to the datasheets/ directory. Files in that directory belong to their respective copyright holders. This project is licensed under the MIT license. This applies to both the hardware (schematics, bill of materials, pcb layouts) and documentation. This does *not* apply to the datasheets/ directory, or code/assist09.asm. Those files belong to their respective copyright holders.

5
code/README.md Normal file
View File

@@ -0,0 +1,5 @@
# Code
assist09.asm is the original motorola version, and relies on the as9 assembler found [here](http://home.hccnet.nl/a.w.m.van.der.horst/m6809.html).
assemble.sh will assemble assist09.asm to an s19 file and use gnu binutils objcopy to turn that into a bin file.

2
code/assemble.sh Executable file
View File

@@ -0,0 +1,2 @@
as9 assist09.asm -l s19
objcopy --input-target=srec --output-target=binary assist09.s19 assist09.bin

1737
code/assist09.asm Normal file

File diff suppressed because it is too large Load Diff

0
code/boot.asm Normal file
View File