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/mouse.c | |
parent | a75284dbd70acc7ec4a832045c8a2fbec2d773d8 (diff) | |
download | seabios-hppa-19786767cff71f52950c2902c2e3e93545c06a86.zip seabios-hppa-19786767cff71f52950c2902c2e3e93545c06a86.tar.gz seabios-hppa-19786767cff71f52950c2902c2e3e93545c06a86.tar.bz2 |
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/mouse.c')
-rw-r--r-- | src/mouse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mouse.c b/src/mouse.c index fd46219..aeb1ef4 100644 --- a/src/mouse.c +++ b/src/mouse.c @@ -412,7 +412,7 @@ int74_function() } // INT74h : PS/2 mouse hardware interrupt -void VISIBLE +void VISIBLE16 handle_74(struct bregs *regs) { //debug_isr(regs); |