From: <bob...@us...> - 2007-07-17 10:26:10
|
Revision: 1173 http://svn.sourceforge.net/hackndev/?rev=1173&view=rev Author: bobofdoom Date: 2007-07-17 03:26:05 -0700 (Tue, 17 Jul 2007) Log Message: ----------- Cocoboot: Added missing endian swapping around tt_offset. This should fix 'Returned c01d' error on LD, TX etc. Modified Paths: -------------- cocoboot/trunk/m68k/cocoboot.c Modified: cocoboot/trunk/m68k/cocoboot.c =================================================================== --- cocoboot/trunk/m68k/cocoboot.c 2007-07-17 09:05:42 UTC (rev 1172) +++ cocoboot/trunk/m68k/cocoboot.c 2007-07-17 10:26:05 UTC (rev 1173) @@ -140,7 +140,7 @@ arm_globals.ram_base = EndianFix32(get_ram_base()); arm_globals.ram_size = EndianFix32(get_ram_size()); arm_globals.mach_num = EndianFix32(835); - arm_globals.tt_offset = get_tt_offset(); + arm_globals.tt_offset = EndianFix32(get_tt_offset()); } /** This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |