hp-saturn/opcodes/Dx_regs_field_A.v

28 lines
551 B
Coq
Raw Normal View History

2019-02-08 23:59:56 +01:00
/******************************************************************************
* Dx
* register manipulation field A
*
*/
`include "decstates.v"
`DEC_DX: begin
2019-02-09 19:18:58 +01:00
case (nb_in)
2019-02-08 23:59:56 +01:00
4'hA: begin
A[19:0] <= C[19:0];
$display("%5h A=C\tA", inst_start_PC);
end
4'hE: begin
A[19:0] <= C[19:0];
C[19:0] <= A[19:0];
$display("%5h ACEX\tA", inst_start_PC);
end
default: begin
$display("ERROR : DEC_DX");
decode_error <= 1;
end
endcase
decstate <= `DEC_START;
end