source layout

This commit is contained in:
folkert van heusden 2023-03-20 21:16:11 +01:00
parent d8912d66f4
commit 0336c0c66c
Signed by untrusted user who does not match committer: folkert
GPG key ID: 6B6455EDFEED3BD1

6
bus.h
View file

@ -110,11 +110,11 @@ public:
uint16_t get_console_leds() { return console_leds; } uint16_t get_console_leds() { return console_leds; }
void add_cpu(cpu *const c) { this -> c = c; } void add_cpu(cpu *const c) { this -> c = c; }
void add_tm11(tm_11 *tm11) { this -> tm11 = tm11; } void add_tm11(tm_11 *tm11) { this -> tm11 = tm11; }
void add_rk05(rk05 *rk05_) { this -> rk05_ = rk05_; } void add_rk05(rk05 *rk05_) { this -> rk05_ = rk05_; }
void add_rl02(rl02 *rl02_) { this -> rl02_ = rl02_; } void add_rl02(rl02 *rl02_) { this -> rl02_ = rl02_; }
void add_tty(tty *tty_) { this -> tty_ = tty_; } void add_tty(tty *tty_) { this -> tty_ = tty_; }
cpu *getCpu() { return this->c; } cpu *getCpu() { return this->c; }