mirror of
https://github.com/sxpert/hp-saturn
synced 2025-01-31 19:57:50 +01:00
16 lines
296 B
Verilog
16 lines
296 B
Verilog
/******************************************************************************
|
|
* 805 CONFIG
|
|
*
|
|
*
|
|
*/
|
|
|
|
`include "decstates.v"
|
|
|
|
`DEC_CONFIG: begin
|
|
execute_cycle <= 0;
|
|
decstate <= `DEC_START;
|
|
`ifdef SIM
|
|
$display("%05h CONFIG\t\t\t<= NOT IMPLEMENTED YET", saved_PC);
|
|
`endif
|
|
end
|
|
|