From 02242f44e479bb4a7d982e40b56ba185f733bac1 Mon Sep 17 00:00:00 2001 From: Yuchen Pei Date: Mon, 18 Dec 2017 15:44:32 +0100 Subject: finished project 5 --- projects/05/Computer.hdl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'projects/05/Computer.hdl') diff --git a/projects/05/Computer.hdl b/projects/05/Computer.hdl index a34dcae..fdda8e3 100644 --- a/projects/05/Computer.hdl +++ b/projects/05/Computer.hdl @@ -21,7 +21,6 @@ CHIP Computer { PARTS: // Put your code here: CPU(reset=reset, instruction=instruction, inM=inM, writeM=writeM, outM=outM, addressM=addressM, pc=pc); - DFF(in=writeM, out=load); - Memory(in=outM, address=addressM, load=load, out=inM); + Memory(in=outM, address=addressM, load=writeM, out=inM); ROM32K(address=pc, out=instruction); } -- cgit v1.2.3