After installing and having an introduction to the ModelSim-Altera Starter Edition, it's time to see a really easy example by coding som
After installing ModelSim-Altera Starter Edition, what's better than testing it?
This is what we're going to see in this ModelSim-Altera Starter Edition introduction.
Simulation in HDL system is essential.
One calls that EDA for Electronic Design Automation.
It's like a debugger for a software program.
In this tutorial, we're going to see how to install ModelSim-Altera Starter Edition 10.1d simulation tool.
Blinking a LED, a basic step.
But without this first step, there won't be a second.
And without second, no third and so on.
This simple tutorial will explain basics in order to program a blinking system.
Thus this timer example in Verilog could be seen as an Hello World exercise.
Let's get started.
Every language needs to handle numbers.
With Verilog we're going to see that numbers need to have an explicit base system to avoid errors.
Each base system has a radix.
This radix is the number of unique digits making up a base system.
VHDL is one of the most famous design hardware description languages.
If you are interested to know how to switch on your first LED in VHDL, let's get started!
For this tutorial we are going to use the Altera DE1 FPGA board. And we'll switch on LED 0 and 1, to understand how it works.
It may be possible that one day you said to yourself: "I would like to design my own schematics for my electronic integrated circuits".
But you didn't know how to start.
Let's see this by learning basics in this Eagle design tutorial.
How to read, sort and write a new file with a specific text file? A great question, isn't it?
What about a Java example to show how to read a file, sorting it and writing the result into a new text file?
Let's see that in this tutorial with a classic exercise, to manipulate inputs and outputs files.
Sometimes you need to convert one uint16_t variable into two uint8_t.
As we manipulate binaries, it's impossible to do something like that: 0xAB + 0xCD = 0xABCD.
Indeed, the result of 0xAB + 0xCD = 0x178 because 0xAB = 171 and 0xCD = 205.
A classic way to deal with database, with Android, it's to use the SQLite classes.
What's unique in SQLite is that you don't need a server where running your database. Indeed, everything is already inside your Android application.
And of course impossible to another application to read this database.