comparison bootmatch/comp_defs.h @ 9:bfcc8180cf3c

bootmatch compiler written
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 10 Jun 2023 02:55:29 +0000
parents
children
comparison
equal deleted inserted replaced
8:304ac8119c8a 9:bfcc8180cf3c
1 /*
2 * This header file contains global definitions for our bootmatch compiler.
3 */
4
5 #define BOOT_BLOCK_SIZE 0x2000
6 #define MAX_RANGES 32
7
8 struct range {
9 unsigned offset;
10 unsigned nbytes;
11 };