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

15 lines
257 B
Verilog

/******************************************************************************
* 04 SETHEX
*
*
*/
`include "decstates.v"
begin
hex_dec <= `MODE_HEX;
decstate <= `DEC_START;
`ifdef SIM
$display("%05h SETHEX", inst_start_PC);
`endif
end