chore(gui): add two windows to top menu
This commit is contained in:
parent
dd86330e1d
commit
83994e6adc
|
@ -126,6 +126,14 @@ impl Egui {
|
||||||
if ui.button("Registers").clicked() {
|
if ui.button("Registers").clicked() {
|
||||||
self.show_registers = true;
|
self.show_registers = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ui.button("Interrupts").clicked() {
|
||||||
|
self.show_int = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ui.button("Timer").clicked() {
|
||||||
|
self.show_timer = true;
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
#[cfg(feature = "debug")]
|
#[cfg(feature = "debug")]
|
||||||
|
|
Loading…
Reference in New Issue