1
0
mirror of synced 2026-02-22 23:37:13 +00:00

added rf sector buffer

This commit is contained in:
brad
2010-04-10 20:16:06 +00:00
parent 30380f136e
commit efc438f11d
3 changed files with 5 additions and 10 deletions

View File

@@ -8,6 +8,7 @@
`include "../rtl/pdp8_ram.v"
`include "../rtl/pdp8.v"
`include "../rtl/ram_32kx12.v"
`include "../rtl/ram_256x12.v"
`timescale 1ns / 1ns

View File

@@ -3,7 +3,7 @@
//
`include "../rtl/pdp8_rf.v"
`include "../rtl/ram_256x12.v"
`timescale 1ns / 1ns

View File

@@ -9,13 +9,13 @@
`include "../rtl/pdp8.v"
`include "../rtl/top.v"
`include "../rtl/ram_32kx12.v"
`include "../rtl/ram_256x12.v"
`include "../rtl/debounce.v"
`timescale 1ns / 1ns
module test;
wire rs232_txd;
wire rs232_rxd;
@@ -106,15 +106,9 @@ module test;
if (top.cpu.state == 4'b0000)
begin
cycle = cycle + 1;
// #1 $display("#%d, r%b s%d, pc %o ir%o ma %o mb %o j%b l%b ac %o, i%b/%b",
// cycle, top.cpu.run, top.cpu.state, top.cpu.pc,
// top.cpu.ir, top.cpu.ma, top.cpu.mb, top.cpu.jmp, top.cpu.l, top.cpu.ac,
// top.cpu.interrupt_enable, top.cpu.interrupt);
//#1 $display(" io_data_in %o, io_data_out %o",
//io_data_in, io_data_out);
#1 $display("pc %o ir %o l %b ac %o ion %o",
top.cpu.pc, top.cpu.mb, top.cpu.l, top.cpu.ac, top.cpu.interrupt_enable);
top.cpu.pc, top.cpu.mb, top.cpu.l, top.cpu.ac,
top.cpu.interrupt_enable);
if (top.cpu.state == 4'b1100)
$finish;