This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# http://bjoern.spruck.net/lynx/blog/chips.xhtml | |
# UnpackgenerateCode_L1D08: | |
# LDX #$00 | |
# STZ $44 | |
# STZ $45 | |
# LoopGenerateCode_L1D0E: | |
# JSR GenerateCodeFunk1_L1D3C | |
# STA $1280,X | |
# JSR GenerateCodeFunk1_L1D3C |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"bytes" | |
"flag" | |
"fmt" | |
"image" | |
"image/color" | |
"io" | |
"os" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
01 (1) = Floor Tile | |
02 (2) = Wall | |
03 (3) = Ice | |
04 (4) = Ice Corner | |
05 (5) = Ice Corner | |
06 (6) = Ice Corner | |
07 (7) = Ice Corner | |
08 (8) = Water | |
09 (9) = Fire | |
0a (10) = Force floor |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
01 (1) = Floor Tile | |
02 (2) = Wall | |
03 (3) = Ice | |
04 (4) = Ice Corner | |
05 (5) = Ice Corner | |
06 (6) = Ice Corner | |
07 (7) = Ice Corner | |
08 (8) = Water | |
09 (9) = Fire | |
0a (10) = Force floor |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# Copyright (C) 2021 Andrew Ekstedt (magical) | |
# | |
# Borrows a small amount of code from mastodon-backup, | |
# Copyright (C) 2017-2018 Alex Schroeder <[email protected]> | |
# This program is free software: you can redistribute it and/or modify it under | |
# the terms of the GNU General Public License as published by the Free Software | |
# Foundation, either version 3 of the License, or (at your option) any later | |
# version. |
OlderNewer