hp-saturn/opcodes/04_SETHEX.v
2019-02-08 11:06:19 +01:00

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