URL
https://opencores.org/ocsvn/rtf8088/rtf8088/trunk
Show entire file |
Details |
Blame |
View Log
Rev 2 |
Rev 7 |
Line 1... |
Line 1... |
//=============================================================================
|
//=============================================================================
|
// CMPSB
|
// CMPSB
|
//
|
//
|
//
|
//
|
// 2009-2012 Robert Finch
|
// 2009-2013 Robert Finch
|
// Stratford
|
// Stratford
|
// robfinch<remove>@opencores.org
|
// robfinch<remove>@finitron.ca
|
//
|
//
|
//
|
//
|
// This source file is free software: you can redistribute it and/or modify
|
// This source file is free software: you can redistribute it and/or modify
|
// it under the terms of the GNU Lesser General Public License as published
|
// it under the terms of the GNU Lesser General Public License as published
|
// by the Free Software Foundation, either version 3 of the License, or
|
// by the Free Software Foundation, either version 3 of the License, or
|
Line 22... |
Line 22... |
//
|
//
|
//
|
//
|
//=============================================================================
|
//=============================================================================
|
//
|
//
|
CMPSB:
|
CMPSB:
|
`include "check_for_ints.v"
|
begin
|
else begin
|
read(`CT_RDMEM,{seg_reg,`SEG_SHIFT} + si);
|
cyc_type <= `CT_RDMEM;
|
|
lock_o <= 1'b0;
|
lock_o <= 1'b0;
|
cyc_o <= 1'b1;
|
|
stb_o <= 1'b1;
|
|
we_o <= 1'b0;
|
|
adr_o <= {seg_reg,`SEG_SHIFT} + si;
|
|
state <= CMPSB1;
|
state <= CMPSB1;
|
end
|
end
|
CMPSB1:
|
CMPSB1:
|
if (ack_i) begin
|
if (ack_i) begin
|
|
nack();
|
state <= CMPSB2;
|
state <= CMPSB2;
|
`TERMINATE_CYCLE
|
|
lock_o <= 1'b0;
|
lock_o <= 1'b0;
|
a[ 7:0] <= dat_i[7:0];
|
a[ 7:0] <= dat_i[7:0];
|
a[15:8] <= {8{dat_i[7]}};
|
a[15:8] <= {8{dat_i[7]}};
|
end
|
end
|
CMPSB2:
|
CMPSB2:
|
begin
|
begin
|
state <= CMPSB3;
|
state <= CMPSB3;
|
cyc_type <= `CT_RDMEM;
|
read(`CT_RDMEM,esdi);
|
lock_o <= 1'b0;
|
lock_o <= 1'b0;
|
cyc_o <= 1'b1;
|
|
stb_o <= 1'b1;
|
|
we_o <= 1'b0;
|
|
adr_o <= esdi;
|
|
end
|
end
|
CMPSB3:
|
CMPSB3:
|
if (ack_i) begin
|
if (ack_i) begin
|
|
nack();
|
state <= CMPSB4;
|
state <= CMPSB4;
|
`TERMINATE_CYCLE
|
|
lock_o <= 1'b0;
|
lock_o <= 1'b0;
|
b[ 7:0] <= dat_i[7:0];
|
b[ 7:0] <= dat_i[7:0];
|
b[15:8] <= {8{dat_i[7]}};
|
b[15:8] <= {8{dat_i[7]}};
|
end
|
end
|
CMPSB4:
|
CMPSB4:
|
Line 76... |
Line 67... |
si <= si_inc;
|
si <= si_inc;
|
di <= di_inc;
|
di <= di_inc;
|
end
|
end
|
if ((repz & !cxz & zf) | (repnz & !cxz & !zf)) begin
|
if ((repz & !cxz & zf) | (repnz & !cxz & !zf)) begin
|
cx <= cx_dec;
|
cx <= cx_dec;
|
state <= CMPSB;
|
ip <= ir_ip;
|
|
state <= IFETCH;
|
end
|
end
|
else
|
else
|
state <= IFETCH;
|
state <= IFETCH;
|
end
|
end
|
|
|
© copyright 1999-2025
OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.