From 0336c0c66cd18ead71e7068d96af93cddfb29d77 Mon Sep 17 00:00:00 2001 From: folkert van heusden Date: Mon, 20 Mar 2023 21:16:11 +0100 Subject: [PATCH] source layout --- bus.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bus.h b/bus.h index 5abe75d..f60921d 100644 --- a/bus.h +++ b/bus.h @@ -110,11 +110,11 @@ public: uint16_t get_console_leds() { return console_leds; } - void add_cpu(cpu *const c) { this -> c = c; } - void add_tm11(tm_11 *tm11) { this -> tm11 = tm11; } + void add_cpu(cpu *const c) { this -> c = c; } + void add_tm11(tm_11 *tm11) { this -> tm11 = tm11; } void add_rk05(rk05 *rk05_) { this -> rk05_ = rk05_; } 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; }