diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2008-03-05 21:09:59 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2008-03-05 21:09:59 -0500 |
commit | 19786767cff71f52950c2902c2e3e93545c06a86 (patch) | |
tree | 9f0d188604667dfa937fb024e5f87313deeb679e /src/floppy.c | |
parent | a75284dbd70acc7ec4a832045c8a2fbec2d773d8 (diff) | |
download | seabios-19786767cff71f52950c2902c2e3e93545c06a86.tar.gz |
Rename VISIBLE macro for better control.
VISIBLE16 is used to mark functions externally available in 16bit code.
VISIBLE32 is for 32bit functions.
Diffstat (limited to 'src/floppy.c')
-rw-r--r-- | src/floppy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/floppy.c b/src/floppy.c index 5a7513b2..a0352384 100644 --- a/src/floppy.c +++ b/src/floppy.c @@ -21,7 +21,7 @@ // Since no provisions are made for multiple drive types, most // values in this table are ignored. I set parameters for 1.44M // floppy here -struct floppy_ext_dbt_s diskette_param_table2 VISIBLE = { +struct floppy_ext_dbt_s diskette_param_table2 VISIBLE16 = { .dbt = { .specify1 = 0xAF, .specify2 = 0x02, // head load time 0000001, DMA used @@ -714,7 +714,7 @@ floppy_13(struct bregs *regs, u8 drive) } // INT 0Eh Diskette Hardware ISR Entry Point -void VISIBLE +void VISIBLE16 handle_0e(struct bregs *regs) { //debug_isr(regs); |