123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- #ifndef _OS_EMUL_H_
- #define _OS_EMUL_H_
- typedef struct _os_emul os_emul;
- INLINE_OS_EMUL\
- (os_emul *) os_emul_create
- (const char *file_name,
- device *root);
- INLINE_OS_EMUL\
- (void) os_emul_init
- (os_emul *emulation,
- int nr_cpus);
- INLINE_OS_EMUL\
- (void) os_emul_system_call
- (cpu *processor,
- unsigned_word cia);
- INLINE_OS_EMUL\
- (int) os_emul_instruction_call
- (cpu *processor,
- unsigned_word cia,
- unsigned_word ra);
- #endif
|