need to restart KW11-L after cpu as KW11-L needs the cpu
This commit is contained in:
parent
bf610e17b2
commit
0abfc2087b
1 changed files with 3 additions and 3 deletions
6
bus.cpp
6
bus.cpp
|
@ -85,9 +85,6 @@ bus *bus::deserialize(const JsonDocument j, console *const cnsl, std::atomic_uin
|
||||||
b->add_ram(m);
|
b->add_ram(m);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (j.containsKey("kw11-l"))
|
|
||||||
b->add_KW11_L(kw11_l::deserialize(j["kw11-l"], b, cnsl));
|
|
||||||
|
|
||||||
if (j.containsKey("tty"))
|
if (j.containsKey("tty"))
|
||||||
b->add_tty(tty::deserialize(j["tty"], b, cnsl));
|
b->add_tty(tty::deserialize(j["tty"], b, cnsl));
|
||||||
|
|
||||||
|
@ -103,6 +100,9 @@ bus *bus::deserialize(const JsonDocument j, console *const cnsl, std::atomic_uin
|
||||||
if (j.containsKey("rk05"))
|
if (j.containsKey("rk05"))
|
||||||
b->add_rk05(rk05::deserialize(j["rk05"], b));
|
b->add_rk05(rk05::deserialize(j["rk05"], b));
|
||||||
|
|
||||||
|
if (j.containsKey("kw11-l"))
|
||||||
|
b->add_KW11_L(kw11_l::deserialize(j["kw11-l"], b, cnsl));
|
||||||
|
|
||||||
// TODO: tm11, dc11
|
// TODO: tm11, dc11
|
||||||
|
|
||||||
return b;
|
return b;
|
||||||
|
|
Loading…
Add table
Reference in a new issue