Files
nyuller/.gitignore
mr.one 1d7554cd39 Add NUFLI image pipeline
- Add mufflon C source (gitignored, auto-downloaded by make)
- Add tools/nuf_to_asm.py for converting .nuf to oscar64 assembly
- Add Makefile targets: nufli, nufli-clean, ensure-mufflon
- Generate NUFLI .asm/.h files for all 5 screens
- Add NUFLI integration plan to tasks.md
2026-07-18 22:55:09 +02:00

56 lines
769 B
Plaintext

# build artifacts
build/
*.prg
*.asm
*.map
*.lbl
*.int
*.dbj
*.csz
*.d64
*.bin
*.crt
# but DO commit the asset-pipeline outputs (see tools/convert_screens.py)
!src/data/processed/*.bin
!src/data/processed/*.attr
!src/data/processed/*.d021
!src/data/raw/
# oscar64 build output (built by `make -C make compiler` from oscar64 source)
oscar64/bin/
oscar64/build/
# python cache
__pycache__/
*.pyc
# python venvs
tools/img-convert/venv/
# mufflon source (not a submodule, from SVN repo)
mufflon/
# mufflon build output
build/mufflon
# NUFLI generated files (BMP intermediates, .nuf output, result/error maps)
src/data/nufli/*.bmp
src/data/nufli/*.nuf
# temp / comparison output
tmp/
# editor / IDE
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
# misc
*.log
*.pid
core