mirror of
https://github.com/sxpert/hp-saturn
synced 2024-11-16 19:50:19 +01:00
22 lines
501 B
Verilog
22 lines
501 B
Verilog
/******************************************************************************
|
|
* 808x
|
|
* a lot of things start with 808x...
|
|
*
|
|
*/
|
|
|
|
`include "decstates.v"
|
|
|
|
`DEC_808X: begin
|
|
case (nb_in)
|
|
4'h4, 4'h5, 4'h6, 4'h7, 4'h8, 4'h9, 4'hA, 4'hB: begin
|
|
t_reg = nb_in[3];
|
|
t_set_test = nb_in[1];
|
|
t_set_test_val = nb_in[0];
|
|
decstate <= `DEC_AC_BIT_SET_TEST;
|
|
end
|
|
default: begin
|
|
$display("ERROR : DEC_808X");
|
|
decode_error <= 1;
|
|
end
|
|
endcase
|
|
end
|