Friday, February 26, 2016
Verilog HDL: 1-bit Full Adder Gate-level Circuit Description
This is a gate-level description of a 1-bit Full Adder. We use 2 Half Adder modules to return the Sum and Carry out of the inputs.
Structural Diagram
Full Adder Module
module FullAdder(A,B,Cin,Cout,S);
input A,B,Cin;
wire C1,C2,S1;
output Cout,S;
...
Read moreSunday, January 10, 2016
Embedded Systems: Turn on LEDs with the push buttons of the MB90F387S MCU (Fujitsu Jouet Bleu Starter Kit)
Shinemax24
9:04 PM
Digital Systems Design
,
Embedded Systems
,
Fujitsu Jouet Bleu Starter Kit
,
MB90F387S MCU
No comments
:
In this program, we will make the integrated LEDs turn on and off upon the press of switches.
We will make LED1, LED3, and LED5 turn on when SW1 is pressed and make LED2, and LED3 turn on when SW2 is pressed. These LEDs turn off when the respective push buttons are released.
#include "_ffmc16.h"
#include "extern.h"
#include "monitor.h"
void main(void)
{
__set_il(7);...
Read moreThursday, March 5, 2015
Logic Circuits: 1-digit Decimal in Excess-3 to Gray Code Converter
Problem: Design a digital circuit that converts an Excess-3 of a single-digit decimal input into Gray Code. Draw it's logic diagram.
In order to be able to design this circuit ourselves, we need to learn Excess-3 and Gray Code. We can familiarize ourselves to them at least.
First step...
Read moreMonday, February 16, 2015
C Programming: Non-recursive and Recursive Programs for Getting the Factorial of a Number
Here are programs that compute for the factorial of a number both non-recursively and recursively.
Here is the non-recursive way:
#include<stdio.h>
int factorial(int num)
{
int i;
for(i=num-1;i>1;i--)
{
num=num*i;...
Read moreFriday, February 6, 2015
C Programming: Stacking with a Singly Linked List of Nested Structures (2 Structures)
Shinemax24
8:56 PM
C Programming
,
Nested Structures
,
Programming
,
Singly Linked List
,
Stack
No comments
:
This is a program that stacks (push) values to a certain range indicated by the user.
Will include an image of the visualization soon, as well as code comments... (updated)
Program code:
#include<stdio.h>
struct stack
{
int data;
struct stack *next;...
Read moreTuesday, February 3, 2015
DC Circuits: Calculating the Total Resistance of Parallel Resistances Problem #1
A 20 Ohms resistor, 5 Ohms resistor, and 1.5 Volts source are all connected in parallel with each other. Calculate the Total Resistance of the circuit, Voltage across both resistors, Total Current, and the current through each resistor.
Let's draw the circuit:
Solution:
I =...
Read moreSunday, February 1, 2015
DC Circuits: Calculating Voltage Drops and Total Current Problem #1
Two resistors in series, 100 Ohms and 50 Ohms in values, are connected in series to a 5 Volts source. What is the voltage drop across each of the resistor? What is the total current I?
Firstly, we need to draw the circuit to better understand it.
Solution:
I = \frac{V}{R}
Ohm's...
Read more
Subscribe to:
Posts
(
Atom
)