module WarpSE( input [23:1] A_FSB, output [23:22] GA, input nAS_FSB, input nLDS_FSB, input nUDS_FSB, input nWE_FSB, output nDTACK_FSB, output nVPA_FSB, output nBERR_FSB, input FCLK, input C16M, input C8M, input E, input nDTACK_IOB, input nVPA_IOB, output nVMA_IOB, output nAS_IOB, output nUDS_IOB, output nLDS_IOB, output nBR_IOB, input nBG_IOB, input nBERR_IOB, inout nRES, input nIPL2, output nROMOE, output nRAMLWE, output nRAMUWE, output nROMWE, output nRAS, output nCAS, output [11:0] RA, output nOE, output nADoutLE0, output nADoutLE1, output nAoutOE, output nDoutOE, output nDinOE, output nDinLE, output MCKE, input [5:0] DBG); /* GA gated (translated) address output */ assign GA[23:22] = A_FSB[23:22]; /*assign GA[23:22] = ( // $800000-$8FFFFF to $000000-$0FFFFF (1 MB) (A_FSB[23:20]==4'h8) || // $700000-$7EFFFF to $300000-$3EFFFF (960 kB) (A_FSB[23:20]==4'h7 && A_FSB[19:16]!=4'hF) || // $600000-$6FFFFF to $200000-$2FFFFF (1 MB) (A_FSB[23:20]==4'h6)) ? 2'b00 : A_FSB[23:22];*/ /* Reset input and open-drain output */ wire nRESin = nRES; wire nRESout; assign nRES = !nRESout ? 1'b0 : 1'bZ; /* AS cycle detection */ wire BACT, BACTr; /* MC68k clock enable */ wire MCKEi; /* Refresh request/ack signals */ wire RefReq, RefUrg; /* QoS enable */ wire IOQoSEN; /* FSB chip select signals */ wire IOCS, IORealCS, IOPWCS, IACS; wire ROMCS, ROMCS4X; wire RAMCS, RAMCS0X; wire IOQoSCS, SndQoSCS; CS cs( /* MC68HC000 interface */ A_FSB[23:08], FCLK, nRESin, nWE_FSB, /* /AS cycle detection */ BACT, /* QoS enable input */ IOQoSEN, /* Device select outputs */ IOCS, IORealCS, IOPWCS, IACS, ROMCS, ROMCS4X, RAMCS, RAMCS0X, IOQoSCS, SndQoSCS); wire RAMReady; RAM ram( /* MC68HC000 interface */ FCLK, A_FSB[21:1], nWE_FSB, nAS_FSB, nLDS_FSB, nUDS_FSB, nDTACK_FSB, /* AS cycle detection inputs */ BACT, BACTr, /* RAM and ROM select inputs */ RAMCS, RAMCS0X, ROMCS, ROMCS4X, /* RAM ready output */ RAMReady, /* Refresh Counter Interface */ RefReq, RefUrg, /* DRAM and NOR flash interface */ RA[11:0], nRAS, nCAS, nRAMLWE, nRAMUWE, nOE, nROMOE, nROMWE); wire IONPReady, IOPWReady; wire IORDREQ, IOWRREQ; wire IOL0, IOU0; wire ALE0S, ALE0M, ALE1; assign nADoutLE0 = ~(ALE0S || ALE0M); assign nADoutLE1 = ~ALE1; wire IOACT, IODONE, IOBERR; IOBS iobs( /* MC68HC000 interface */ FCLK, nWE_FSB, nAS_FSB, nLDS_FSB, nUDS_FSB, /* AS cycle detection */ BACT, /* Select signals */ IOCS, IORealCS, IOPWCS, /* FSB cycle termination outputs */ IONPReady, IOPWReady, nBERR_FSB, /* Read data OE control */ nDinOE, /* IOB Master Controller Interface */ IORDREQ, IOWRREQ, IOACT, IODONE, IOBERR, /* FIFO primary level control */ ALE0S, IOL0, IOU0, /* FIFO secondary level control */ ALE1); wire AoutOE; assign nAoutOE = !AoutOE; wire nAS_IOBout, nLDS_IOBout, nUDS_IOBout, nVMA_IOBout; assign nAS_IOB = AoutOE ? nAS_IOBout : 1'bZ; assign nLDS_IOB = AoutOE ? nLDS_IOBout : 1'bZ; assign nUDS_IOB = AoutOE ? nUDS_IOBout : 1'bZ; assign nVMA_IOB = AoutOE ? nVMA_IOBout : 1'bZ; IOBM iobm( /* PDS interface */ C16M, C8M, E, nAS_IOBout, nLDS_IOBout, nUDS_IOBout, nVMA_IOBout, nDTACK_IOB, nVPA_IOB, nBERR_IOB, nRESin, /* PDS address and data latch control */ AoutOE, nDoutOE, ALE0M, nDinLE, /* IO bus slave port interface */ IORDREQ, IOWRREQ, IOL0, IOU0, IOACT, IODONE, IOBERR); CNT cnt( /* FSB clock and E clock inputs */ FCLK, C8M, E, /* Refresh request */ RefReq, RefUrg, /* Reset, button */ nRESout, nRESin, nIPL2, /* Mac PDS bus master control outputs */ AoutOE, nBR_IOB, /* QoS control */ BACT, BACTr, IOQoSCS, SndQoSCS, IOQoSEN, SndQoSReady, MCKEi); FSB fsb( /* MC68HC000 interface */ FCLK, nAS_FSB, nDTACK_FSB, nVPA_FSB, /* MC68HC000 clock enable */ MCKEi, MCKE, /* FSB cycle detection */ BACT, BACTr, /* Ready inputs */ ROMCS4X, RAMCS0X, RAMReady, IOPWCS, IOPWReady, IONPReady, IOQoSEN, SndQoSReady, /* Interrupt acknowledge select */ IACS); endmodule