GE-115 Emulator
An Emulator of the General Electrics GE-115 computer
peripherical.h
Go to the documentation of this file.
1 #ifndef PERI_H
2 #define PERI_H
3 
4 #include "ge.h"
5 
6 int ge_peri_on_clock(struct ge *ge);
7 int ge_peri_on_pulses(struct ge *ge);
8 int ge_peri_deinit(struct ge *ge);
9 
10 #endif /* PERI_H */
int ge_peri_on_pulses(struct ge *ge)
Definition: peripherical.c:7
int ge_peri_deinit(struct ge *ge)
Definition: peripherical.c:37
int ge_peri_on_clock(struct ge *ge)
Definition: peripherical.c:22
The entire state of the emulated system, including registers, memory, peripherals and timings.
Definition: ge.h:94