Skip to content

Instantly share code, notes, and snippets.

View piedoom's full-sized avatar
🦀
rust rust rust rust rust rust rust rust

doomy piedoom

🦀
rust rust rust rust rust rust rust rust
View GitHub Profile
@piedoom
piedoom / dspG1.c
Created October 6, 2019 13:43 — forked from anonymous/dspG1.c
The dsp-G1 Analog Modeling Synthesizer Source Code
/*
Copyright 2016 DSP Synthesizers Sweden.
Author: Jan Ostman
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.
*/
 
#include "wiring.h"
#include "LPC8xx.h"
@piedoom
piedoom / playground.rs
Last active June 12, 2017 23:44 — forked from anonymous/playground.rs
Shared via Rust Playground
pub struct MyStruct<'a> {
stuffs: Vec<&'a AnotherStruct>
}
pub struct AnotherStruct {
some_data: DataStruct
}
pub struct DataStruct {
number: i32,