Skip to content

Instantly share code, notes, and snippets.

@eagafonov
eagafonov / wozmon.s
Created February 23, 2026 06:19 — forked from beneater/wozmon.s
.org $8000
.org $ff00
XAML = $24 ; Last "opened" location Low
XAMH = $25 ; Last "opened" location High
STL = $26 ; Store address Low
STH = $27 ; Store address High
L = $28 ; Hex value parsing Low
H = $29 ; Hex value parsing High
YSAV = $2A ; Used to see if hex value is given
@eagafonov
eagafonov / Makefile
Created January 15, 2022 00:41 — forked from jeffsp/Makefile
Easy way to embed help in a GNU make Makefile
.PHONY: target1 # Target 1 help text
target1: target2 target3
@echo "Target 1"
.PHONY: target2 # Target 2 help text
target2:
@echo "Target 2"
.PHONY: target3