FreeCalypso > hg > tcs211-l1-reconst
view g23m/objdiff/l1_ext/disasm.sh @ 129:419f638cf03b
l1_pwmgr.c: l1s_sleep_manager(): logic apparently reconstructed,
but the compiler's register allocation still does not match
author | Mychaela Falconia <falcon@ivan.Harhan.ORG> |
---|---|
date | Sat, 14 May 2016 06:28:44 +0000 (2016-05-14) |
parents | 66bf9aa6a4b0 |
children |
line wrap: on
line source
#!/bin/sh set -e for i in `cat disasm-list` do tiobjd ../../blobs/l1_ext/$i.obj disasm -gl > $i.orig tiobjd ../../blobs/l1_ext.upd/$i.obj disasm -gl > $i.tiupd tiobjd ../../__out__/gsm*/obj/l1_ext/$i.obj disasm -gl > $i.new tiobjd ../../__out__/gsm*/obj/l1_ext/$i.obj disasm -gll > $i.newln done