]> Joshua Wise's Git repositories - fpgaboy.git/blobdiff - System.v
Cut 1 at an onboard bootloader
[fpgaboy.git] / System.v
index 62683d3bbd5b2b69809da5f0ec33b112f08a054d..8f9ef085234387d1c80f51c9fc1f4ae6f76d4659 100644 (file)
--- a/System.v
+++ b/System.v
@@ -202,6 +202,7 @@ module CoreTop(
        input [3:0] buttons,
        output wire [7:0] leds,
        output serio,
+       input serin,
        output wire [3:0] digits,
        output wire [7:0] seven,
        output wire cr_nADV, cr_nCE, cr_nOE, cr_nWE, cr_CRE, cr_nLB, cr_nUB, cr_CLK,
@@ -221,6 +222,7 @@ module CoreTop(
        
        wire [7:0] leds;
        wire serio;
+       wire serin = 1;
        wire [3:0] digits;
        wire [7:0] seven;
        wire [7:0] switches = 8'b0;
@@ -348,7 +350,8 @@ module CoreTop(
                .data(data[0]),
                .wr(wr[0]),
                .rd(rd[0]),
-               .serial(serio)
+               .serial(serio),
+               .serialrx(serin)
                );
 
        InternalRAM ram(
This page took 0.023936 seconds and 4 git commands to generate.