From ecd9ae56dd0f8f1d877f53da62e3403b5e53faf7 Mon Sep 17 00:00:00 2001 From: RunasSudo Date: Mon, 5 Sep 2016 17:57:38 +0930 Subject: [PATCH] nice counting m9 --- tools/disasm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/disasm.py b/tools/disasm.py index 1d5ebc7..b6e21e8 100755 --- a/tools/disasm.py +++ b/tools/disasm.py @@ -81,7 +81,7 @@ with open(sys.argv[1], 'rb') as data: elif word == 2: #PUSH print('{:04x} push {}'.format(pos, readOp().get())) elif word == 3: #POP - print('{:04x} pop {}'.format(pos, readOp().set())) + print('{:04x} pop {}'.format(pos, readOp().set())) elif word == 4: #EQ print('{:04x} eq {} {} {}'.format(pos, readOp().set(), readOp().get(), readOp().get())) elif word == 5: #GT