├── !BOOT.txt ├── .gitattributes └── loderunner.6502 /!BOOT.txt: -------------------------------------------------------------------------------- 1 | *BASIC 2 | MODE1 3 | VDU23,1,0;0;0;0; 4 | VDU12,21 5 | *RUN NEWLODE 6 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | --------------------------------------------------------------------------------