* Lu, Yinghai yinghai.lu@amd.com [060503 20:40]:
Please check the attached zrom fix up.
- copy_and_run.c double skip length
- merge zrom_stream.c into rom_stream.c
- ram position check to skip 0xa0000, and 0xf0000...
I suggest you drop the following from the patch:
+#if ENDIAN == 0 && BITSIZE == 8 +#define GETBIT(bb, src, ilen) GETBIT_8(bb, src, ilen) +#endif +#if ENDIAN == 0 && BITSIZE == 16 +#define GETBIT(bb, src, ilen) GETBIT_LE16(bb, src, ilen) +#endif +#if ENDIAN == 0 && BITSIZE == 32 +#define GETBIT(bb, src, ilen) GETBIT_LE32(bb, src, ilen) +#endif
The algorithm does not work with anything than 32bit and little endian anyways as it is written down.
Stefan