Skip to content

Instantly share code, notes, and snippets.

@luckasRanarison
luckasRanarison / cpu.rs
Last active May 30, 2023 07:04
6502-rs (base 2A03)
use crate::opcodes::CPU_OPCODES;
use self::{AddressMode::*, AsmInstr::*, StatusFlag::*};
#[rustfmt::skip]
#[derive(Debug, Clone, Copy)]
pub enum AsmInstr {
LDA, LDX, LDY,
STA, STX, STY,
TAX, TAY, TSX, TXA, TXS, TYA,
@aparrish
aparrish / understanding-word-vectors.ipynb
Last active June 16, 2024 02:26
Understanding word vectors: A tutorial for "Reading and Writing Electronic Text," a class I teach at ITP. (Python 2.7) Code examples released under CC0 https://creativecommons.org/choose/zero/, other text released under CC BY 4.0 https://creativecommons.org/licenses/by/4.0/
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.