diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2009-09-09 11:34:39 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2009-09-09 11:34:39 -0400 |
commit | 9f985427ffeb877f6eb6531a61c0d51250bdf7f3 (patch) | |
tree | 6c4ef72950230409e2a3e4f9de2463894c83458b /src/asm-offsets.c | |
parent | 372e071ed4b6a66fb371cf13b6f6d14ddd00837a (diff) | |
download | seabios-9f985427ffeb877f6eb6531a61c0d51250bdf7f3.tar.gz |
Replace common segment/offset pairs with struct segoff_s.
Introduce 'struct segoff_s' to more places.
Diffstat (limited to 'src/asm-offsets.c')
-rw-r--r-- | src/asm-offsets.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/asm-offsets.c b/src/asm-offsets.c index c3241512..5035cef8 100644 --- a/src/asm-offsets.c +++ b/src/asm-offsets.c @@ -20,7 +20,7 @@ void foo(void) OFFSET(BREGS_esi, bregs, esi); OFFSET(BREGS_edi, bregs, edi); OFFSET(BREGS_flags, bregs, flags); - OFFSET(BREGS_ip, bregs, ip); + OFFSET(BREGS_code, bregs, code); COMMENT("BDA"); OFFSET(BDA_ebda_seg, bios_data_area_s, ebda_seg); |