This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define _GLIBCXX_DEBUG | |
/* | |
* File: main.cpp | |
* Author: frebro | |
* | |
* Created on September 30, 2011, 5:26 PM | |
*/ | |
#include <cstdlib> | |
#include <iostream> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# @auth Fredrik Brosser | |
# @time 2011-10-03 20:17 | |
# | |
# First attempt at ruby for Arduino | |
# | |
class RduinoSketch < ArduinoSketch | |
# Pin definitions | |
output_pin 7, :as => :led | |
input_pin 7, :as => :btn, :device => :button |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Single bit Full-Adder | |
-- fulladd.vhdl | |
Library ieee; | |
Use ieee.std_logic_1164.all; | |
Entity fulladd is | |
port ( Cin, x, y : In Std_logic; | |
s, Cout : Out Std_logic | |
); | |
end fulladd; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass[a4paper,11pt]{article} | |
\usepackage[T1]{fontenc} | |
\usepackage[utf8]{inputenc} | |
\usepackage{lmodern} | |
\usepackage{hyperref} | |
\usepackage{graphicx} | |
\usepackage{rotating} | |
\usepackage{listings} | |
\usepackage{color} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Pulse To Level | |
-- | |
-- PulseToLevel.vhdl | |
-- | |
-- Decription | |
-- | |
-- Lab 3, EDA234 | |
-- | |
-- @author Fredrik Brosser | |
-- @date 2011-11-01 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
---------------------------------------------------------------------------------- | |
-- Fredrik Brosser | |
-- DS18S20 1-Wire Communication | |
-- EDA234, Group 2 | |
-- | |
-- ComTest.vhd | |
-- Last Updated: 2011-11-16 | |
-- | |
-- Target Device: XC9572XL | |
-- I/O Pins Used: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
---------------------------------------------------------------------------------- | |
-- Fredrik Brosser | |
-- DS18S20 1-Wire Communication | |
-- EDA234, Group 2 | |
-- | |
-- FILE | |
-- ComTest.vhd | |
-- Last Updated: 2011-11-21 | |
-- | |
-- VERSION |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
---------------------------------------------------------------------------------- | |
-- Fredrik Brosser | |
-- Push-Button debouncer | |
-- EDA234, Group 2 | |
-- | |
-- FILE | |
-- TempModule.vhd | |
-- Last Updated: 2011-11-22 | |
-- | |
-- VERSION |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-------------------------------------------------------------------------------- | |
-- Control Unit | |
-- Fredrik Brosser | |
-- EDA234, Group 2 | |
-- | |
-- FILE | |
-- ControlUnit.vhd | |
-- Last Updated: 2011-11-27 | |
-- | |
-- VERSION |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-------------------------------------------------------------------------------- | |
-- Control Unit | |
-- Fredrik Brosser | |
-- EDA234, Group 2 | |
-- | |
-- FILE | |
-- ControlUnit.vhd | |
-- Last Updated: 2011-11-27 | |
-- | |
-- VERSION |