GE-115 Emulator
An Emulator of the General Electrics GE-115 computer
msl.h
Go to the documentation of this file.
1 #ifndef MSL_H
2 #define MSL_H
3 
4 #include <stdint.h>
5 #include "ge.h"
6 
7 struct msl_timing_state;
8 
17 struct msl_timing_state* msl_get_state(uint8_t state);
18 
28 void msl_run_state(struct ge* ge, struct msl_timing_state *state);
29 
30 #endif /* MSL_H */
void msl_run_state(struct ge *ge, struct msl_timing_state *state)
Runs a machine state.
Definition: msl.c:18
struct msl_timing_state * msl_get_state(uint8_t state)
Gets timing state␐␐␐␐␐␐␐␐␐.
Definition: msl.c:9
The entire state of the emulated system, including registers, memory, peripherals and timings.
Definition: ge.h:94
Timing chart.
Definition: msl-timings.h:52