Skip to content

Instantly share code, notes, and snippets.

View urish's full-sized avatar

Uri Shaked urish

View GitHub Profile
@urish
urish / text-orient.sch
Created March 14, 2024 11:44
Text orientation test for Xschem Viewer
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 {}
@urish
urish / tt02-caravel-breakout-test-firmware.ino
Last active March 4, 2024 17:36
Quick test firmware for TT02 using the standard caravel breakout board
#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;
@urish
urish / tt-analog-draw.tcl
Last active June 26, 2024 18:24
Minimal analog project for TT08 (just bare minimum to pass tapeout)
# This script has moved to tt-support-tools:
# https://github.com/TinyTapeout/tt-support-tools/blob/tt08/def/analog/magic_init_project.tcl
@urish
urish / gds.yaml
Last active November 3, 2023 13:48
Tiny Tapeout Custom GDS submission - GDS action
# Copy this file to .github/workflows/gds.yaml
name: gds
on:
push:
workflow_dispatch:
jobs:
gds:
@urish
urish / scanchain-controller.py
Last active October 23, 2023 12:19
TinyTapeout 02 External Scanchain controller
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)
@urish
urish / scanchain-driver.py
Created October 20, 2023 11:00
Tiny Tapeout Scanchain Driver
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)
@urish
urish / gds_compare.py
Created October 18, 2023 08:51
Compare two GDS files using klayout scripting
# 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
@urish
urish / scan_wrapper.v
Last active August 31, 2022 21:16
Parallel Scan Wrapper
`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
*/
// 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>
@urish
urish / wokwi-custom-chips-c-api.md
Last active January 30, 2023 05:47
Wokwi Custom Chips C API