hp-saturn/opcodes/80A_RESET.v

17 lines
292 B
Coq
Raw Normal View History

2019-02-07 22:54:06 +01:00
/******************************************************************************
* 80A RESET
*
*
*/
2019-02-08 00:02:55 +01:00
`include "decstates.v"
2019-02-09 00:01:48 +01:00
`include "bus_commands.v"
2019-02-08 00:02:55 +01:00
2019-02-08 19:09:13 +01:00
begin
2019-02-09 00:01:48 +01:00
next_cycle <= `BUSCMD_RESET;
2019-02-08 00:02:55 +01:00
decstate <= `DEC_START;
`ifdef SIM
2019-02-09 00:01:48 +01:00
$display("%05h RESET", inst_start_PC);
2019-02-08 00:02:55 +01:00
`endif
end