remove some stuff

This commit is contained in:
Raphael Jacquot 2019-02-10 18:45:52 +01:00
parent c26772b4f9
commit ec83140ff3
2 changed files with 0 additions and 35 deletions

View file

@ -1,16 +0,0 @@
/******************************************************************************
* 80A RESET
*
*
*/
`include "decstates.v"
`include "bus_commands.v"
begin
next_cycle <= `BUSCMD_RESET;
decstate <= `DEC_START;
`ifdef SIM
$display("%05h RESET", inst_start_PC);
`endif
end

View file

@ -1,19 +0,0 @@
/******************************************************************************
* 805 CONFIG
*
*
*/
`include "decstates.v"
`DEC_BX: begin
case (nb_in)
4'h8, 4'h9, 4'hA, 4'hB, 4'hC, 4'hD, 4'hE, 4'hF: begin
end
default: begin
$display("ERROR : DEC_BX");
decode_error <= 1;
end
endcase
end