mirror of
https://github.com/sxpert/hp-saturn
synced 2025-01-31 19:57:50 +01:00
22 lines
483 B
Coq
22 lines
483 B
Coq
|
/******************************************************************************
|
||
|
* 80A RESET
|
||
|
*
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
DECODE_RESET:
|
||
|
if (runstate == `RUN_DECODE)
|
||
|
begin
|
||
|
runstate <= `NEXT_INSTR;
|
||
|
`ifdef SIM
|
||
|
$display("%05h RESET\t\t\t<= NOT IMPLEMENTED YET", saved_PC);
|
||
|
`endif
|
||
|
end
|
||
|
// `ifdef SIM
|
||
|
// else
|
||
|
// begin
|
||
|
// decode_error <= 1;
|
||
|
// $display("RESET runstate %h", runstate);
|
||
|
// end
|
||
|
// `endif
|