mirror of
https://github.com/sxpert/hp-saturn
synced 2025-02-12 08:48:27 +01:00
17 lines
294 B
Verilog
17 lines
294 B
Verilog
/******************************************************************************
|
|
* 04 SETHEX
|
|
*
|
|
*
|
|
*/
|
|
|
|
`include "decstates.v"
|
|
|
|
//`DEC_SETHEX:
|
|
begin
|
|
hex_dec <= `MODE_HEX;
|
|
// execute_cycle <= 0;
|
|
decstate <= `DEC_START;
|
|
`ifdef SIM
|
|
$display("%05h SETHEX", saved_PC);
|
|
`endif
|
|
end
|