fix: remove alert(), fix waveform zoom, add waveform scroll (wheel + ctrl+wheel)
This commit is contained in:
@@ -20,7 +20,7 @@ export function simTick() {
|
||||
export function startSim() {
|
||||
if (state.simRunning) return;
|
||||
const hasClocks = state.gates.some(g => g.type === 'CLOCK');
|
||||
if (!hasClocks) { alert('Place a CLOCK gate first!'); return; }
|
||||
if (!hasClocks) return;
|
||||
|
||||
state.simRunning = true;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user