Skip to content

Commit

Permalink
add 14MHz mode
Browse files Browse the repository at this point in the history
  • Loading branch information
UzixLS committed Nov 1, 2022
1 parent 993c336 commit 7c6fdb6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Smallest FPGA-based ZX Spectrum clone with real Z80.
* PS/2 keyboard
* Pentagon, Spectrum 128, Spectrum 48 and Spectrum +3e modes
* Altera EP1C3T100 FPGA
* Real Z80 with 3.5MHz, 4.4MHz, 5.2MHz, 7MHz modes
* Real Z80 with 3.5MHz, 4.4MHz, 5.2MHz, 7MHz (no-wait turbo) and 14MHz (turbo with wait-states) modes
* 512K RAM
* TurboSound with switchable stereo ABC/ACB/mono output
* Integrated DivMMC and Z-Controller, 1x microSD socket
Expand Down
3 changes: 1 addition & 2 deletions rom_src/menu_structure.asm
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ menu_machine_cb:

menu_clock_cb:
ld a, (cfg.clock)
ld c, 3
ld c, 4
call menu_handle_press
ld (cfg.clock), a
ld bc, #03ff
Expand Down Expand Up @@ -232,4 +232,3 @@ menu_handle_press:
.decrement_roll:
ld a, c ; value = max
ret

0 comments on commit 7c6fdb6

Please sign in to comment.