diff options
| author | uvok | 2026-01-04 18:29:23 +0100 |
|---|---|---|
| committer | uvok | 2026-01-04 18:29:23 +0100 |
| commit | c43bd7342ccc976d28c75954f964e2da674333a7 (patch) | |
| tree | 55520a10909e2d05d2121d8ae0c0d53deb129926 /nandgame/assembler/createbin.py | |
| parent | 9c6de724cc3d37c0af09a1f902546d3f261ee53a (diff) | |
docu
Diffstat (limited to 'nandgame/assembler/createbin.py')
| -rwxr-xr-x | nandgame/assembler/createbin.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/nandgame/assembler/createbin.py b/nandgame/assembler/createbin.py index 3713389..3fd1bba 100755 --- a/nandgame/assembler/createbin.py +++ b/nandgame/assembler/createbin.py @@ -1,5 +1,10 @@ #!/usr/bin/env python3 +""" +Basically, iterate all 16-bit numbers, +or rather, 15-bit, to have valid +nandgame instructions, skip reserved bits. +""" with open("allins.bin", "wb") as f: ins=0x0000 |
