diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2009-09-09 09:51:31 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2009-09-09 09:51:31 -0400 |
commit | 372e071ed4b6a66fb371cf13b6f6d14ddd00837a (patch) | |
tree | a5c939b039cd417a82288ae327fb5df6944887d3 /src/floppy.c | |
parent | 141436b5b253039436d46f0cf883fabd2822367e (diff) | |
download | seabios-372e071ed4b6a66fb371cf13b6f6d14ddd00837a.tar.gz |
Rename VAR16_32 to VAR16VISIBLE.
Sometimes VAR16_32 is used to export a definition to assembler, so
clarify its naming.
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 a71c9eba..3d8d07d3 100644 --- a/src/floppy.c +++ b/src/floppy.c @@ -26,7 +26,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 VAR16_32 = { +struct floppy_ext_dbt_s diskette_param_table2 VAR16VISIBLE = { .dbt = { .specify1 = 0xAF, // step rate 12ms, head unload 240ms .specify2 = 0x02, // head load time 4ms, DMA used @@ -68,7 +68,7 @@ struct floppyinfo_s { u8 media_state; }; -struct floppyinfo_s FloppyInfo[] VAR16_32 = { +struct floppyinfo_s FloppyInfo[] VAR16VISIBLE = { // Unknown { {0, 0, 0}, 0x00, 0x00}, // 1 - 360KB, 5.25" - 2 heads, 40 tracks, 9 sectors |