aboutsummaryrefslogtreecommitdiff
path: root/src/misc.c
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2009-09-09 09:51:31 -0400
committerKevin O'Connor <kevin@koconnor.net>2009-09-09 09:51:31 -0400
commit372e071ed4b6a66fb371cf13b6f6d14ddd00837a (patch)
treea5c939b039cd417a82288ae327fb5df6944887d3 /src/misc.c
parent141436b5b253039436d46f0cf883fabd2822367e (diff)
downloadseabios-hppa-372e071ed4b6a66fb371cf13b6f6d14ddd00837a.zip
seabios-hppa-372e071ed4b6a66fb371cf13b6f6d14ddd00837a.tar.gz
seabios-hppa-372e071ed4b6a66fb371cf13b6f6d14ddd00837a.tar.bz2
Rename VAR16_32 to VAR16VISIBLE.
Sometimes VAR16_32 is used to export a definition to assembler, so clarify its naming.
Diffstat (limited to 'src/misc.c')
-rw-r--r--src/misc.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/misc.c b/src/misc.c
index 2d702a4..b12e860 100644
--- a/src/misc.c
+++ b/src/misc.c
@@ -11,11 +11,11 @@
#include "pic.h" // enable_hwirq
// Amount of continuous ram under 4Gig
-u32 RamSize VAR16_32;
+u32 RamSize VAR16VISIBLE;
// Amount of continuous ram >4Gig
u64 RamSizeOver4G;
// Space for bios tables built an run-time.
-char BiosTableSpace[CONFIG_MAX_BIOSTABLE] __aligned(MALLOC_MIN_ALIGN) VAR16_32;
+char BiosTableSpace[CONFIG_MAX_BIOSTABLE] __aligned(MALLOC_MIN_ALIGN) VAR16VISIBLE;
/****************************************************************
@@ -134,23 +134,23 @@ struct descloc_s {
} PACKED;
// Real mode IDT descriptor
-struct descloc_s rmode_IDT_info VAR16_32 = {
+struct descloc_s rmode_IDT_info VAR16VISIBLE = {
.length = sizeof(struct rmode_IVT) - 1,
.addr = (u32)MAKE_FLATPTR(SEG_IVT, 0),
};
// Dummy IDT that forces a machine shutdown if an irq happens in
// protected mode.
-u8 dummy_IDT VAR16_32;
+u8 dummy_IDT VAR16VISIBLE;
// Protected mode IDT descriptor
-struct descloc_s pmode_IDT_info VAR16_32 = {
+struct descloc_s pmode_IDT_info VAR16VISIBLE = {
.length = sizeof(dummy_IDT) - 1,
.addr = (u32)MAKE_FLATPTR(SEG_BIOS, &dummy_IDT),
};
// GDT
-u64 rombios32_gdt[] VAR16_32 __aligned(8) = {
+u64 rombios32_gdt[] VAR16VISIBLE __aligned(8) = {
// First entry can't be used.
0x0000000000000000LL,
// 32 bit flat code segment (SEG32_MODE32_CS)
@@ -168,7 +168,7 @@ u64 rombios32_gdt[] VAR16_32 __aligned(8) = {
};
// GDT descriptor
-struct descloc_s rombios32_gdt_48 VAR16_32 = {
+struct descloc_s rombios32_gdt_48 VAR16VISIBLE = {
.length = sizeof(rombios32_gdt) - 1,
.addr = (u32)MAKE_FLATPTR(SEG_BIOS, rombios32_gdt),
};