HierarchyHelp
/*
 * fetch: fetch unit for SimpleCore
 *
 * Copyright (c) 2001. Integrated Computer Systems Lab., KAIST
 * All rights reserved.
 *
 * Author: Bae Young-Don(donny@ics.kaist.ac.kr)
 * Source: fetch.v
 * Date: 2001/8/23
 */

[Up: control Ifetch]
module	fetch (
	clk,
	dIn,
	fInst
	);

input		clk;	// main clock
input	[15:0]	dIn;	// instruction data
output	[15:0]	fInst;	// fetch data

reg	[15:0]	fInst;

always@(posedge clk)
begin
	fInst = dIn;
end

endmodule

HierarchyHelp

This page: Created:Wed Sep 5 13:28:35 2001
From: fetch.v

Verilog converted to html by v2html 6.0 (written by Costas Calamvokis).Help