From 84b58bf1c1beb6733923ad5e19078e042391643e Mon Sep 17 00:00:00 2001 From: "tim.newsham" Date: Thu, 1 May 2008 18:34:31 +0000 Subject: [PATCH] - oops, was wrong earlier.. its still using 16 byte header. --- tools/dumpaout.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/tools/dumpaout.py b/tools/dumpaout.py index abb9b0a..bfb120e 100755 --- a/tools/dumpaout.py +++ b/tools/dumpaout.py @@ -29,11 +29,10 @@ def dump(fn, addr) : vals = unpack("<%dH" % (a.txt/2), a.txtd) - if v7 : - # it appears the a.out header isnt used for the kernel. - # dropping the first 16 bytes causes the tables in u0.s to - # line up with the addresses they were assigned... - vals = vals[8:] + # it appears the a.out header isnt used for the kernel. + # dropping the first 16 bytes causes the tables in u0.s to + # line up with the addresses they were assigned... + vals = vals[8:] for n,v in enumerate(vals) : print 'dep cpu %o %06o' % (addr+n*2, v)