summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2023-10-04 16:46:57 -0600
committerAlejandro Soto <alejandro@34project.org>2023-10-04 16:46:57 -0600
commit865a1e8ca820da17a9f9c034677a7a959ddaee36 (patch)
tree8331511442ce7746e58fb798b2ad036915ac68be /app
parent972678950297ab158541a8afec2cbcd01a996959 (diff)
app, doc, image_processing, tb/sim/descifrador: remove;5D
Diffstat (limited to 'app')
-rwxr-xr-xapp/bin2mw.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/app/bin2mw.py b/app/bin2mw.py
deleted file mode 100755
index 8bce375..0000000
--- a/app/bin2mw.py
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/usr/bin/env python3
-
-import sys
-
-with open(sys.argv[1], 'rb') as f:
- addr = 0x2000_0000
- while word := f.read(4):
- word = int.from_bytes(word, 'little')
- print(f'mw.l {addr:08x} {word:08x}')
- addr += 4