This document is outdated.
This file contains 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
v {xschem version=3.4.5 file_version=1.2 | |
} | |
G {} | |
K {} | |
V {} | |
S {} | |
E {} | |
L 4 70 -80 90 -80 {} | |
L 4 80 -90 80 -70 {} | |
L 4 80 70 80 90 {} |
This file contains 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
#include <defs.h> | |
//#include <math.h> | |
#include <stub.h> | |
#include <hw/common.h> | |
#include <uart.h> | |
#include <uart_api.h> | |
// there is some Caravel issue happening that prevents the usual SET and CLR from working | |
// a fast read followed by write results in the whole register being cleared. | |
unsigned int temp; |
This file contains 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
# This script has moved to tt-support-tools: | |
# https://github.com/TinyTapeout/tt-support-tools/blob/tt08/def/analog/magic_init_project.tcl |
This file contains 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
# Copy this file to .github/workflows/gds.yaml | |
name: gds | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
gds: |
This file contains 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
from machine import Pin | |
import time | |
CLK_PERIOD_MS = 1 | |
NUM_DESIGNS = 250 # should be higher | |
# from chip's perspective | |
# pinout here: https://projects.raspberrypi.org/en/projects/getting-started-with-the-pico/1 | |
ext_clk = Pin(6, Pin.OUT) | |
ext_latch = Pin(7, Pin.OUT) |
This file contains 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
from machine import Pin, Timer | |
import time | |
CLK_PERIOD_MS = 1 | |
NUM_DESIGNS = 2 # should be higher | |
# from chip's perspective | |
# pinout here: https://projects.raspberrypi.org/en/projects/getting-started-with-the-pico/1 | |
ext_clk = Pin(6, Pin.OUT) | |
ext_latch = Pin(7, Pin.OUT) |
This file contains 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
# Usage: | |
# klayout -b -r compare.py -rd gds1=file1.gds -rd gds2=file2.gds | |
import sys | |
import pya | |
def compare_gds(file1, file2): | |
diff = pya.LayoutDiff() | |
# Load the layouts |
This file contains 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
`default_nettype none | |
/* | |
`ifdef COCOTB | |
`define UNIT_DELAY #1 | |
`define FUNCTIONAL | |
`define USE_POWER_PINS | |
`include "libs.ref/sky130_fd_sc_hd/verilog/primitives.v" | |
`include "libs.ref/sky130_fd_sc_hd/verilog/sky130_fd_sc_hd.v" | |
`endif | |
*/ |
This file contains 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
// Wokwi Custom Chip - For information and examples see: | |
// https://link.wokwi.com/custom-chips-alpha | |
// | |
// SPDX-License-Identifier: MIT | |
// Copyright (C) 2022 Uri Shaked / wokwi.com | |
#include "wokwi-api.h" | |
#include <stdio.h> | |
#include <stdlib.h> | |