From 865a1e8ca820da17a9f9c034677a7a959ddaee36 Mon Sep 17 00:00:00 2001 From: Alejandro Soto Date: Wed, 4 Oct 2023 16:46:57 -0600 Subject: app, doc, image_processing, tb/sim/descifrador: remove;5D --- app/bin2mw.py | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100755 app/bin2mw.py (limited to 'app/bin2mw.py') 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 -- cgit v1.2.3