hp-saturn/opcodes/80A_RESET.v

16 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"
`DEC_RESET: begin
execute_cycle <= 0;
decstate <= `DEC_START;
`ifdef SIM
$display("%05h RESET\t\t\t<= NOT IMPLEMENTED YET", saved_PC);
`endif
end