FreeCalypso > hg > tcs211-l1-reconst
view g23m/objdiff/l1_ext/disasm.sh @ 182:6a71281f0d82
l1audio_init.c fully reconstructed, matches TCS211 object
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Wed, 08 Jun 2016 00:41:23 +0000 |
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