OpenCores
URL https://opencores.org/ocsvn/rtf8088/rtf8088/trunk

Subversion Repositories rtf8088

[/] [rtf8088/] [trunk/] [rtl/] [verilog/] [IFETCH.v] - Diff between revs 7 and 8

Only display areas with differences | Details | Blame | View Log

Rev 7 Rev 8
//=============================================================================
//=============================================================================
//  Fetch instruction
//  Fetch instruction
//
//
//
//
//  (C) 2009,2010,2012 Robert Finch, Stratford
//  (C) 2009,2010,2012,2013 Robert Finch, 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     
// (at your option) any later version.                                      
// (at your option) any later version.                                      
//                                                                          
//                                                                          
// This source file is distributed in the hope that it will be useful,      
// This source file is distributed in the hope that it will be useful,      
// but WITHOUT ANY WARRANTY; without even the implied warranty of           
// but WITHOUT ANY WARRANTY; without even the implied warranty of           
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the            
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the            
// GNU General Public License for more details.                             
// GNU General Public License for more details.                             
//                                                                          
//                                                                          
// You should have received a copy of the GNU General Public License        
// You should have received a copy of the GNU General Public License        
// along with this program.  If not, see <http://www.gnu.org/licenses/>.    
// along with this program.  If not, see <http://www.gnu.org/licenses/>.    
//
//
//
//
// - All of the state control flags are reset.
// - All of the state control flags are reset.
//
//
// - If the current instruction is a prefix then we want to shift it
// - If the current instruction is a prefix then we want to shift it
//   into the prefix buffer before fetching the instruction. Also
//   into the prefix buffer before fetching the instruction. Also
//   interrupts are blocked if the previous instruction is a prefix.
//   interrupts are blocked if the previous instruction is a prefix.
//
//
// - two bytes are fetched at once if the instruction is aligned on
// - two bytes are fetched at once if the instruction is aligned on
//   an even address. This saves a bus cycle most of the time.
//   an even address. This saves a bus cycle most of the time.
//
//
// ToDo:
// ToDo:
// - add an exception if more than two prefixes are present.
// - add an exception if more than two prefixes are present.
//
//
//=============================================================================
//=============================================================================
//
//
IFETCH:
IFETCH:
        begin
        begin
 
                $display("\r\n******************************************************");
 
                $display("time: %d", $time);
                $display("CSIP: %h", csip);
                $display("CSIP: %h", csip);
 
                $display("AX=%h  SI=%h", ax, si);
 
                $display("BX=%h  DI=%h", bx, di);
 
                $display("CX=%h  BP=%h", cx, bp);
 
                $display("DX=%h  SP=%h", dx, sp);
                // Reset all instruction processing flags at instruction fetch
                // Reset all instruction processing flags at instruction fetch
                cyc_type <= `CT_PASSIVE;
                cyc_type <= `CT_PASSIVE;
                mod <= 2'd0;
                mod <= 2'd0;
                rrr <= 3'd0;
                rrr <= 3'd0;
                rm <= 3'd0;
                rm <= 3'd0;
                sxi <= 1'b0;
                sxi <= 1'b0;
                hasFetchedModrm <= 1'b0;
                hasFetchedModrm <= 1'b0;
                hasFetchedDisp8 <= 1'b0;
                hasFetchedDisp8 <= 1'b0;
                hasFetchedDisp16 <= 1'b0;
                hasFetchedDisp16 <= 1'b0;
                hasFetchedVector <= 1'b0;
                hasFetchedVector <= 1'b0;
                hasStoredData <= 1'b0;
                hasStoredData <= 1'b0;
                hasFetchedData <= 1'b0;
                hasFetchedData <= 1'b0;
                data16 <= 16'h0000;
                data16 <= 16'h0000;
                cnt <= 7'd0;
                cnt <= 7'd0;
//              if (prefix1!=8'h00 && prefix2 !=8'h00 && is_prefix)
//              if (prefix1!=8'h00 && prefix2 !=8'h00 && is_prefix)
//                      state <= TRIPLE_PREFIX;
//                      state <= TRIPLE_PREFIX;
                if (is_prefix) begin
                if (is_prefix) begin
                        prefix1 <= ir;
                        prefix1 <= ir;
                        prefix2 <= prefix1;
                        prefix2 <= prefix1;
                end
                end
                else begin
                else begin
                        prefix1 <= 8'h00;
                        prefix1 <= 8'h00;
                        prefix2 <= 8'h00;
                        prefix2 <= 8'h00;
                end
                end
 
 
        if (pe_nmi & checkForInts) begin
        if (pe_nmi & checkForInts) begin
            state <= INT2;
            state <= INT2;
            rst_nmi <= 1'b1;
            rst_nmi <= 1'b1;
            int_num <= 8'h02;
            int_num <= 8'h02;
            ir <= `NOP;
            ir <= `NOP;
        end
        end
        else if (irq_i & ie & checkForInts) begin
        else if (irq_i & ie & checkForInts) begin
            state <= INTA0;
            state <= INTA0;
            ir <= `NOP;
            ir <= `NOP;
        end
        end
        else if (ir==`HLT) begin
        else if (ir==`HLT) begin
                        state <= IFETCH;
                        state <= IFETCH;
                cyc_type <= `CT_HALT;
                cyc_type <= `CT_HALT;
        end
        end
        else begin
        else begin
                        state <= IFETCH_ACK;
                        state <= IFETCH_ACK;
                        read(`CT_CODE,csip);
                        read(`CT_CODE,csip);
                        inta_o <= 1'b0;
                        inta_o <= 1'b0;
                        mio_o <= 1'b1;
                        mio_o <= 1'b1;
                        lock_o <= bus_locked;
                        lock_o <= bus_locked;
                end
                end
        end
        end
 
 
IFETCH_ACK:
IFETCH_ACK:
        if (ack_i) begin
        if (ack_i) begin
                nack_ir();
                nack_ir();
                $display("IR: %h",dat_i);
                $display("CSIP: %h IR: %h",csip,dat_i);
                if (!hasPrefix)
                if (!hasPrefix)
                        ir_ip <= ip;
                        ir_ip <= ip;
//              ir_ip <= dat_i;
//              ir_ip <= dat_i;
                w <= dat_i[0];
                w <= dat_i[0];
                d <= dat_i[1];
                d <= dat_i[1];
                v <= dat_i[1];
                v <= dat_i[1];
                sxi <= dat_i[1];
                sxi <= dat_i[1];
                sreg2 <= dat_i[4:3];
                sreg2 <= dat_i[4:3];
                sreg3 <= {1'b0,dat_i[4:3]};
                sreg3 <= {1'b0,dat_i[4:3]};
                ir2 <= 8'h00;
                ir2 <= 8'h00;
                state <= DECODE;
                state <= DECODE;
        end
        end
 
 
// Fetch extended opcode
// Fetch extended opcode
//
//
XI_FETCH:
XI_FETCH:
        begin
        begin
                read(`CT_CODE,csip);
                read(`CT_CODE,csip);
                state <= XI_FETCH_ACK;
                state <= XI_FETCH_ACK;
        end
        end
 
 
XI_FETCH_ACK:
XI_FETCH_ACK:
        if (ack_i) begin
        if (ack_i) begin
                nack_ir2();
                nack_ir2();
                state <= DECODER2;
                state <= DECODER2;
        end
        end
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.