8 channel, 16 bit Verilog Multiplexer
[code title=”mux_8to1_16bit.v” collapse=”true”] // 8 channel mux // BK Turley `timescale 1ns/100ps module mux_8to1_16bit(out, sel, in0, in1, in2, in3, in4, […]
a technical blog
software engineer?
programmer?
developer?
coder?
...these are my notes
[code title=”mux_8to1_16bit.v” collapse=”true”] // 8 channel mux // BK Turley `timescale 1ns/100ps module mux_8to1_16bit(out, sel, in0, in1, in2, in3, in4, […]
[code title=”reg_16bit.v code” collapse=”true”]//16 bit Register by B Kyle Turley //Verilog `timescale 1ns/100ps module reg_16bit (out, in, load, clear, clk); […]
Many programmers are surprised to find that switch statements aren’t compatible with strings in C/C++. When attempting to compile, you […]
Simple population growth calculator, works for compound interest as well if your clever. Download visual basic 2010 project file in […]
Lexical analysis is step 1 of compiling code down to machine language. The process breaks source code down into a […]
[code title=”View Code: sep_cu.v” collapse=”true”] module cu(clk, reset, IRin, C, SC_Val); input clk, reset; input [15:0] IRin; output [14:0] C; […]
The clock signal is essential when designing sequential circuits, the following two code examples demonstrate how to produce a clock […]
[code title=”View Source Code:” collapse=”true”] # Learning Objectives: # Functions, arrays, structures. ############################################ #### C++ Code ############################################ #void DisplayTemps(Temp temps[], […]
This little program is written in both C++ ans MIPS assembly code. It asks the user for their name and […]
These small pieces of code demonstrate the differences between high and low level programming languages. ###################################################### #### Origional C++ Code […]