1/1
verilog code for controller
by vead on Feb 26, 2014 |
vead
Posts: 4 Joined: Feb 24, 2014 Last seen: Mar 2, 2015 |
||
I need verilog code for mico controller
Micro controller features 8 bit micro controller 8 bit ALU 8 bit data 8 bit instruction 8 bit input port 8 bit output port 4K bytes program memory on chip (ROM) 8K bytes data memory on chip (RAM) 64K program memory(external ROM) 64K data memory (external RAM) 16 bit counter 16 bit data pointer 16 bit stack pointer 64k stack address 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 mico controller? |
RE: verilog code for controller
by rozpruwacz on Feb 27, 2014 |
rozpruwacz
Posts: 25 Joined: Feb 28, 2009 Last seen: Apr 4, 2021 |
||
when i'm reading such posts I always wonder "WTF ??!!! What planet does he come from?" :D LOL
And why there is so many posts like this in this forum ... ? |
RE: verilog code for controller
by vead on Feb 27, 2014 |
vead
Posts: 4 Joined: Feb 24, 2014 Last seen: Mar 2, 2015 |
||
I agree with you but I don't know why anyone not giving reply
|
RE: verilog code for controller
by studleylee on Feb 27, 2014 |
studleylee
Posts: 11 Joined: Dec 7, 2004 Last seen: Mar 11, 2024 |
||
I need a codes for a fluxes capacitor.
Specs: It must be able send a message 8.64e+10 uS into the past. I like Verilog it has been goods to me. The fluxes capacitor must be implemented in a state machine because that's what my thesis'is director advised. I must have this by 2 weeks to get my degree. With this code I will be able to tell myself if I passed or not. Thanks. |
RE: verilog code for controller
by studleylee on Feb 28, 2014 |
studleylee
Posts: 11 Joined: Dec 7, 2004 Last seen: Mar 11, 2024 |
||
Look at the Y80 or PIC codes in the repository.
|
RE: verilog code for controller
by rozpruwacz on Mar 5, 2014 |
rozpruwacz
Posts: 25 Joined: Feb 28, 2009 Last seen: Apr 4, 2021 |
||
vead, nobody gives you an answer because your question is so abstract that there is no answer.
|
RE: verilog code for multipliers
by manasamuliki on Mar 13, 2014 |
manasamuliki
Posts: 2 Joined: Mar 12, 2014 Last seen: Mar 20, 2014 |
||
Hello i need verilog code for the multipliers in the given paper please do post
my paper.pdf (461 kb)
|
RE: verilog code for controller
by rozpruwacz on Mar 13, 2014 |
rozpruwacz
Posts: 25 Joined: Feb 28, 2009 Last seen: Apr 4, 2021 |
||
module multiply(
input [15:0] x, input [15:0] y, output [32:0]z ); assign z = x * y; endmodule |
RE: verilog code for controller
by hellwig on Mar 13, 2014 |
hellwig
Posts: 32 Joined: Dec 30, 2007 Last seen: Nov 3, 2024 |
||
1. manasamuliki: Please don't hijack the thread; it was about 8-bit
microcontrollers. 2. rozpruwacz: I'm afraid, no. I only looked very briefly into the paper, but what I understood is this: The multiplication is done within a finite field, GF(2^m) to be precise. The paper presents an efficient way to do operations in this field, and proposes a hardware structure for this. And this brings me to 3. manasamuliki: Implement the structure that is proposed in the paper. Verilog has excellent means to express circuits given this way. Hellwig |
RE: verilog code for controller
by rozpruwacz on Mar 13, 2014 |
rozpruwacz
Posts: 25 Joined: Feb 28, 2009 Last seen: Apr 4, 2021 |
||
hahaha :)
Hellwig, I didn't even bother to read the pdf file, just like manasamuliki didn't bother to explain anything or ask a serious question. so I just put equal amount of trouble in writing an answer as manasamuliki put in writing his post :P PS. when i read post that begins with "I need a verilog code ..." I just can't help writing a malicious comment :) |
RE: verilog code for controller
by kayamsaikumar on Mar 2, 2015 |
kayamsaikumar
Posts: 1 Joined: Feb 27, 2015 Last seen: Mar 9, 2015 |
||
I need verilog code for mico controller
Micro controller features 8 bit micro controller 8 bit ALU 8 bit data 8 bit instruction 8 bit input port 8 bit output port 4K bytes program memory on chip (ROM) 8K bytes data memory on chip (RAM) 64K program memory(external ROM) 64K data memory (external RAM) 16 bit counter 16 bit data pointer 16 bit stack pointer 64k stack address 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 mico controller? |
RE: verilog code for controller
by vead on Mar 2, 2015 |
vead
Posts: 4 Joined: Feb 24, 2014 Last seen: Mar 2, 2015 |
||
hello,
Now I understand some basic about hardware design I am asking stupid question. I have been asking this question on two another forum what will be future of processor in next 15 years ? I am just asking for new ideas. whats the new features will inbuilt in embedded processor. what type of changes we will see in futures. In another way, what will ability of new processor ? whats the new processor can do but existing processor like 8051 , PIC, ARM, can not do? This question is totally based on experience, I am waiting for some opinion |
RE: verilog code for controller
by sankeerth.sreeshan on Mar 2, 2015 |
sankeerth.sreeshan
Posts: 1 Joined: Jan 16, 2015 Last seen: May 28, 2021 |
||
hii dude,
i think in next 15 years the processor will change into something which is having cores mainly for internet, audio/ video processing and mostly all cores needed for an IoT system along with a complex core for security. |
1/1