view g23m/objdiff/l1_ext/disasm.sh @ 167:c19fb53b730b

dl1_com.c: reconstructed CPU load measurement code in layer_1_sync_HISR_entry() reconstruction of this module can be considered complete at this point
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 07 Jun 2016 06:48:07 +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