Skip to content

Instantly share code, notes, and snippets.

View min0ru's full-sized avatar
💤

Vladimir Suravtsov min0ru

💤
View GitHub Profile
@min0ru
min0ru / keychron K3.md
Created October 26, 2021 15:57 — forked from aleixmorgadas/keychron K3.md
Keychron K3 Linux
@min0ru
min0ru / syntax.s
Created May 1, 2021 13:44 — forked from DmitrySoshnikov/syntax.s
AT&T assembly syntax and IA-32 instructions
# --------
# Hardware
# --------
# Opcode - operational code
# Assebly mnemonic - abbreviation for an operation
# Instruction Code Format (IA-32)
# - Optional instruction prefix
# - Operational code
; ___ _ __ ___ __ ___
; / __|_ _ __ _| |_____ / /| __|/ \_ )
; \__ \ ' \/ _` | / / -_) _ \__ \ () / /
; |___/_||_\__,_|_\_\___\___/___/\__/___|
; An annotated version of the snake example from Nick Morgan's 6502 assembly tutorial
; on http://skilldrick.github.io/easy6502/ that I created as an exercise for myself
; to learn a little bit about assembly. I **think** I understood everything, but I may
; also be completely wrong :-)