mirror of
https://github.com/sxpert/hp-saturn
synced 2025-01-19 10:26:58 +01:00
16 lines
258 B
Verilog
16 lines
258 B
Verilog
/******************************************************************************
|
|
* 05 SETDEC
|
|
*
|
|
*
|
|
*/
|
|
|
|
|
|
`include "decstates.v"
|
|
|
|
begin
|
|
hex_dec <= `MODE_DEC;
|
|
decstate <= `DEC_START;
|
|
`ifdef SIM
|
|
$display("%05h SETDEC", inst_start_PC);
|
|
`endif
|
|
end
|