Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Building a VHDL Clone

I am planning to design a hardware simulation language like VHDL for my final year project. How should I go about it ?

Any help would be greatly appreciated.

like image 530
Siddharth Raina Avatar asked Dec 03 '22 13:12

Siddharth Raina


2 Answers

If you want to design a hardware simulation language, start with the hardware.

Determine the level at which you want to simulate the hardware - transistor level, switch level, register level, behavioural level and what nots. Everything else starts from there. Once that is decided, you will know what constructs your language needs to support.

You will need to know what kind of devices your language can work with - transistors, gates, registers, muxes, memory, arithmetic units and what nots. Then, you need to find the appropriate models for each device.

In the end, you will definitely want to limit your scope. Limit yourself to doing one thing. The VHDL language was not invented by a single person in a day.

like image 132
sybreon Avatar answered Dec 27 '22 23:12

sybreon


Have you been given this project or is one you have decided to do yourself ? If its the latter then you might want to rethink it I'm afraid. Big open ended projects like this don't always end well for the student sadly.

That said if you really want to do it then use VHDL yourself and read up on users comments on it. From that you will find out what annoys or irritates its users and then design something better.

like image 29
IanW Avatar answered Dec 27 '22 22:12

IanW