2021-10-29 10:04:59 +00:00
|
|
|
module FSB(
|
|
|
|
/* MC68HC000 interface */
|
2023-04-07 03:11:11 +00:00
|
|
|
input FCLK, input nAS, output reg nDTACK, output reg nVPA,
|
2021-10-29 10:04:59 +00:00
|
|
|
/* AS cycle detection */
|
2024-09-06 10:05:06 +00:00
|
|
|
output BACT, output reg BACTr,
|
2021-10-29 10:04:59 +00:00
|
|
|
/* Ready inputs */
|
2023-04-07 03:11:11 +00:00
|
|
|
input ROMCS,
|
|
|
|
input RAMCS, input RAMReady,
|
2023-07-16 03:21:44 +00:00
|
|
|
input IOPWCS, input IOPWReady, input IONPReady,
|
2023-07-16 03:21:41 +00:00
|
|
|
input QoSReady,
|
2023-04-08 09:49:29 +00:00
|
|
|
/* Interrupt acknowledge select */
|
2021-10-29 10:04:59 +00:00
|
|
|
input IACS);
|
|
|
|
|
|
|
|
/* AS cycle detection */
|
|
|
|
reg ASrf = 0;
|
2023-04-07 03:11:11 +00:00
|
|
|
always @(negedge FCLK) begin ASrf <= !nAS; end
|
|
|
|
assign BACT = !nAS || ASrf; // BACT - bus active
|
2024-09-06 10:05:06 +00:00
|
|
|
always @(posedge FCLK) BACTr <= BACT;
|
2023-04-07 03:11:11 +00:00
|
|
|
|
2021-10-29 10:04:59 +00:00
|
|
|
/* DTACK/VPA control */
|
2023-07-16 06:25:27 +00:00
|
|
|
wire Ready = QoSReady && (
|
|
|
|
(RAMCS && RAMReady && !IOPWCS) ||
|
|
|
|
(RAMCS && RAMReady && IOPWCS && IOPWReady) ||
|
|
|
|
(ROMCS) || (IONPReady));
|
2023-04-07 03:11:11 +00:00
|
|
|
always @(posedge FCLK) nDTACK <= !(Ready && BACT && !IACS);
|
|
|
|
always @(posedge FCLK, posedge nAS) begin
|
|
|
|
if (nAS) nVPA <= 1;
|
|
|
|
else nVPA <= !(Ready && BACT && IACS);
|
2021-10-29 10:04:59 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
endmodule
|