hp-saturn/opcodes/05_SETDEC.v

18 lines
295 B
Coq
Raw Normal View History

2019-02-07 22:54:06 +01:00
/******************************************************************************
* 05 SETDEC
*
*
*/
2019-02-08 00:02:55 +01:00
`include "decstates.v"
`DEC_SETDEC: begin
hex_dec <= `MODE_DEC;
execute_cycle <= 0;
decstate <= `DEC_START;
`ifdef SIM
2019-02-08 11:15:16 +01:00
$display("%05h SETDEC", inst_start_PC);
2019-02-08 00:02:55 +01:00
`endif
end