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

16 lines
258 B
Verilog

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