Changeset 66 for trunk/tools/internal/fixcode.c
- Timestamp:
- Oct 11, 2016, 10:42:01 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/internal/fixcode.c
r60 r66 19 19 /* 20 20 // FIXCODE.C -- Fix the AiR-BOOT image; include the code-size and MBR prot-img. 21 // This reads 'air -boot.com', merges 'mbr-prot.bin' and writes 'airboot.bin'.21 // This reads 'airboot.com', merges 'mbr-prot.bin' and writes 'airboot.bin'. 22 22 // It is a quick-and-dirty translation of the original DOS-only ASM file. 23 23 // Of course it's not as small but it's much easier to maintain across 24 24 // multiple platforms. A small change with regard to the old ASM version is 25 // that it directly writes 'airboot.bin' instead of writing 'air -boot.com'.25 // that it directly writes 'airboot.bin' instead of writing 'airboot.com'. 26 26 // This way the pre and post situations are kept valid. 27 27 */ … … 49 49 50 50 /* File names */ 51 #define IN_FILE "air -boot.com" // Target from assembly.51 #define IN_FILE "airboot.com" // Target from assembly. 52 52 #ifdef PLATFORM_LINUX 53 53 #define MERGE_FILE "mbr-prot/mbr-prot.bin" // MBR Protection Image.
Note:
See TracChangeset
for help on using the changeset viewer.