diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2014-09-29 19:08:57 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2014-09-30 09:42:55 -0400 |
commit | 1389eee20e6dccb5bf2fc92132cdde7b3b92a848 (patch) | |
tree | 595d86e36f03ff9a74882eed842b35be27d0099e /src/stacks.h | |
parent | d5c61747e4c1f041264aa0cf133b76fc9ae5a692 (diff) | |
download | seabios-1389eee20e6dccb5bf2fc92132cdde7b3b92a848.tar.gz |
Move stack hop code below call32/call16 code in stacks.c
This change is a just code movement.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/stacks.h')
-rw-r--r-- | src/stacks.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stacks.h b/src/stacks.h index 22fb9439..9d3422f0 100644 --- a/src/stacks.h +++ b/src/stacks.h @@ -5,10 +5,10 @@ #include "types.h" // u32 // stacks.c +u32 call32(void *func, u32 eax, u32 errret); extern u8 ExtraStack[], *StackPos; u32 stack_hop(u32 eax, u32 edx, void *func); u32 stack_hop_back(u32 eax, u32 edx, void *func); -u32 call32(void *func, u32 eax, u32 errret); struct bregs; inline void farcall16(struct bregs *callregs); inline void farcall16big(struct bregs *callregs); |