Skip to content

Instantly share code, notes, and snippets.

View inkwisit's full-sized avatar

Subha Sarkar inkwisit

View GitHub Profile
@inkwisit
inkwisit / Clock.v
Last active April 4, 2018 12:12
First prototype of Wavengine using FPGA
`timescale 1ns / 1ps
module clock(clk_in,rst,clk_out,clk_select_line);
input clk_in;
input [2:0]clk_select_line;
input rst;
output reg clk_out;
@inkwisit
inkwisit / LPC17xx.h
Last active May 17, 2018 21:30
COMMON_FILES_FOR_ARM_CORTEX_M3_LPC17xx
/**************************************************************************//**
* @file LPC17xx.h
* @brief CMSIS Cortex-M3 Core Peripheral Access Layer Header File for
* NXP LPC17xx Device Series
* @version: V1.08
* @date: 21. December 2009
*
* @note
* Copyright (C) 2009 ARM Limited. All rights reserved.
*