hp-saturn/opcodes/805_CONFIG.v

18 lines
299 B
Coq
Raw Normal View History

2019-02-07 22:54:06 +01:00
/******************************************************************************
* 805 CONFIG
*
*
*/
`include "decstates.v"
2019-02-08 21:11:47 +01:00
`include "bus_commands.v"
2019-02-08 19:09:13 +01:00
begin
2019-02-08 21:11:47 +01:00
next_cycle <= `BUSCMD_CONFIGURE;
decstate <= `DEC_START;
`ifdef SIM
2019-02-08 21:11:47 +01:00
$display("%05h CONFIG", inst_start_PC);
`endif
end