diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2014-06-06 13:49:33 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2014-06-06 13:49:33 -0400 |
commit | 43197a2aec677333797aebdfb5f5429875ba6901 (patch) | |
tree | daa25068263ec0dd68653299140eb49f0a90b949 /src/stacks.h | |
parent | 5438c8f55a4be8500ea8b7f218c97857f8a98e19 (diff) | |
download | seabios-43197a2aec677333797aebdfb5f5429875ba6901.tar.gz |
Abstract reset call (and possible 16bit mode switch) into reset() function.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/stacks.h')
-rw-r--r-- | src/stacks.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/stacks.h b/src/stacks.h index d8584f22..22fb9439 100644 --- a/src/stacks.h +++ b/src/stacks.h @@ -17,6 +17,7 @@ inline void __call16_int(struct bregs *callregs, u16 offset); extern void irq_trampoline_ ##nr (); \ __call16_int((callregs), (u32)&irq_trampoline_ ##nr ); \ } while (0) +void reset(void); extern struct thread_info MainThread; struct thread_info *getCurThread(void); void yield(void); |