FoenixMCP/lookup.bat
2021-09-11 22:05:36 -04:00

9 lines
213 B
Batchfile

@echo off
REM Print the contents of memory at the labeled address
REM usage: lookup {label}
if [%2%]==[] (
python C256Mgr\c256mgr.py --lookup %1
) ELSE (
python C256Mgr\c256mgr.py --lookup %1 --count %2
)