verilog code for processor

vead

Nov 27, 2011
473
Joined
Nov 27, 2011
Messages
473
I need verilog code for processor simply processor contain with ALU and CONTROL UNIT
specification
processor 8 bit
ALU 8 bit
decoder 8 bit

whenever we write verilog code we declare module , module name and declare what is input and what is output
example

module module name (input , output);
input=? ;
output=?;
data type = wire or reg;
begin
'
'
'
'
endmodule



how to declare input and output for processor ?
 
Top