Skip to content

Commit

Permalink
Big old re-shuffle and updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
simondotm committed Aug 9, 2017
1 parent ce8ad1a commit b2509a6
Show file tree
Hide file tree
Showing 317 changed files with 534 additions and 84 deletions.
2 changes: 1 addition & 1 deletion asm/main.asm
Original file line number Diff line number Diff line change
Expand Up @@ -655,7 +655,7 @@ PALETTE_FADE_STEPS = 16

; include the nula logo. Try to keep this simple and small in size to maximize disk space.
.logo_image_data
INCBIN "output/logo/nula.png.bbc.exo"
INCBIN "gallery/output/logo/nula.png.bbc.exo"

.end

Expand Down
2 changes: 1 addition & 1 deletion bbcnula1.asm
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@


INCLUDE "asm/main.asm"
INCLUDE "output/volume1/config.asm"
INCLUDE "gallery/output/volume1/config.asm"
Binary file modified bbcnula1.ssd
Binary file not shown.
2 changes: 1 addition & 1 deletion bbcnula2.asm
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@


INCLUDE "asm/main.asm"
INCLUDE "output/volume2/config.asm"
INCLUDE "gallery/output/volume2/config.asm"
Binary file modified bbcnula2.ssd
Binary file not shown.
2 changes: 1 addition & 1 deletion bbcnula3.asm
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@


INCLUDE "asm/main.asm"
INCLUDE "output/volume3/config.asm"
INCLUDE "gallery/output/volume3/config.asm"
Binary file modified bbcnula3.ssd
Binary file not shown.
File renamed without changes.
38 changes: 36 additions & 2 deletions compile.py → gallery/compile.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
OUTPUT_FORMAT = "png"
FORCE_UPDATE = False # has to be True atm because configs dont get build properly otherwise (TODO!)
EXO_COMPRESS = True
BEEBASM_ROOT = "gallery/"

# bbc file format
# [version]
Expand Down Expand Up @@ -190,7 +191,7 @@ def exportMode2(imagefilename):
num_files = beeb_asm_config.count("PUTFILE") + 1
beeb_filename = "A." + '{num:02d}'.format(num=num_files)

config = 'PUTFILE "' + output_filename + '", "' + beeb_filename + '", &' + load_address + ', &' + exec_address + '\n'
config = 'PUTFILE "' + BEEBASM_ROOT + output_filename + '", "' + beeb_filename + '", &' + load_address + ', &' + exec_address + '\n'
beeb_asm_config += config

#return beeb_asm_config
Expand All @@ -211,7 +212,7 @@ def updateConfig(imagefilename, beeb_asm_config):
num_files = beeb_asm_config.count("PUTFILE") + 1
beeb_filename = "A." + '{num:02d}'.format(num=num_files)

config = 'PUTFILE "' + output_filename + '", "' + beeb_filename + '", &' + load_address + ', &' + exec_address + '\n'
config = 'PUTFILE "' + BEEBASM_ROOT + output_filename + '", "' + beeb_filename + '", &' + load_address + ', &' + exec_address + '\n'
beeb_asm_config += config

return beeb_asm_config
Expand Down Expand Up @@ -702,3 +703,36 @@ def checkObjectForUpdate(obj, key, value):
asset_manager = AssetManager("assets.json")
asset_manager.compile()


# hacky script to auto-update the readme with thumbnails of the converted images
if True:

rootdir = "output/"
my_file = "../readme.md"

gallery_md = '\n'

for root, directories, filenames in os.walk(rootdir):
#for directory in directories:
# print os.path.join(root, directory)
volume = root[root.rfind('/')+1:]
if len(volume) > 0:
gallery_md += "\n---\n### " + volume + "\n"

for filename in filenames:
if filename[-4:] == '.png':
f = os.path.join(root,filename)
f = f.replace('\\', '/')
f = f.replace(rootdir, '')
s = "<img src='https://github.com/simondotm/bbc-nula/raw/master/gallery/output/" + f + "' width=160 height=128>\n"
gallery_md += s

file = open(my_file, "r")
readme = file.read()
offset = readme.find("<meta>")
readme = readme[:offset+6]
readme += gallery_md
file = open(my_file, "w")
file.write(readme)

print "readme.md updated."
File renamed without changes.
1 change: 1 addition & 0 deletions gallery/imagelist.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ECHO is off.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
5 changes: 5 additions & 0 deletions gallery/makemd.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
@echo off
echo >imagelist.md
cd output
for /r %%x in (*.png) do echo "<img src='https://github.com/simondotm/bbc-nula/raw/master/%%x' width=160 height=128>" >>imagelist.md
pause
72 changes: 72 additions & 0 deletions gallery/output/imagelist.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\logo\nula.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume1\aladdin.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume1\bb.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume1\castle.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume1\chess.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume1\chuckrock.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume1\dd.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume1\doom.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume1\flashback.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume1\gng.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume1\gods.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume1\lemmings.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume1\lotus.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume1\minecraft.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume1\monkey.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume1\outrun2.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume1\pokemon.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume1\pokemonblue.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume1\populous2.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume1\rainbow.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume1\roadrash.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume1\sf.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume1\smw.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume1\smw2.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume1\sonic.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume1\storm.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume1\swiv.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume1\xenon2.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume1\zarch.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume1\zelda.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume1\zool.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume2\archimedes.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume2\beeb.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume2\birds.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume2\cube.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume2\diamond.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume2\elite.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume2\floyd.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume2\fractal.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume2\ghostbusters.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume2\graphics.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume2\homer.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume2\laser.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume2\logo.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume2\marbles.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume2\mario.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume2\neon.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume2\ray1.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume2\ray2.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume2\simpsons.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume2\spidey.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume2\teapot.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume2\terminator.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume2\tron.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume2\trooper.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume2\tut.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume2\woody.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume3\earth.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume3\fashion.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume3\lenna.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume3\lighthouse.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume3\monalisa.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume3\moon.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume3\parrot.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume3\sharbat.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\volume3\tiger.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\wip\crossy.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\wip\parrots.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\wip\populous.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\wip\teapot.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\wip\test.png' width=160 height=128>"
"<img src='https://github.com/simondotm/bbc-nula/raw/master/C:\Users\Simon\Dropbox\GitHub\bbc-nula\gallery\output\wip\tut2.png' width=160 height=128>"
1 change: 1 addition & 0 deletions gallery/output/logo/config.asm
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
PUTFILE "gallery/output/logo/nula.png.bbc.exo", "A.01", &74ea, &2fc0
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
30 changes: 30 additions & 0 deletions gallery/output/volume1/config.asm
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
PUTFILE "gallery/output/volume1/aladdin.png.bbc.exo", "A.01", &690a, &2fc0
PUTFILE "gallery/output/volume1/bb.png.bbc.exo", "A.02", &77f8, &2fc0
PUTFILE "gallery/output/volume1/castle.png.bbc.exo", "A.03", &56bb, &2fc0
PUTFILE "gallery/output/volume1/chess.png.bbc.exo", "A.04", &5e6b, &2fc0
PUTFILE "gallery/output/volume1/chuckrock.png.bbc.exo", "A.05", &67d7, &2fc0
PUTFILE "gallery/output/volume1/dd.png.bbc.exo", "A.06", &6c58, &2fc0
PUTFILE "gallery/output/volume1/doom.png.bbc.exo", "A.07", &5b3f, &2fc0
PUTFILE "gallery/output/volume1/flashback.png.bbc.exo", "A.08", &5dc0, &2fc0
PUTFILE "gallery/output/volume1/gng.png.bbc.exo", "A.09", &6305, &2fc0
PUTFILE "gallery/output/volume1/gods.png.bbc.exo", "A.10", &5a94, &2fc0
PUTFILE "gallery/output/volume1/lemmings.png.bbc.exo", "A.11", &61e2, &2fc0
PUTFILE "gallery/output/volume1/lotus.png.bbc.exo", "A.12", &763b, &2fc0
PUTFILE "gallery/output/volume1/minecraft.png.bbc.exo", "A.13", &52d7, &2fc0
PUTFILE "gallery/output/volume1/monkey.png.bbc.exo", "A.14", &5e30, &2fc0
PUTFILE "gallery/output/volume1/outrun2.png.bbc.exo", "A.15", &60f9, &2fc0
PUTFILE "gallery/output/volume1/pokemon.png.bbc.exo", "A.16", &67e7, &2fc0
PUTFILE "gallery/output/volume1/pokemonblue.png.bbc.exo", "A.17", &7030, &2fc0
PUTFILE "gallery/output/volume1/populous2.png.bbc.exo", "A.18", &69f5, &2fc0
PUTFILE "gallery/output/volume1/rainbow.png.bbc.exo", "A.19", &7779, &2fc0
PUTFILE "gallery/output/volume1/roadrash.png.bbc.exo", "A.20", &6a28, &2fc0
PUTFILE "gallery/output/volume1/sf.png.bbc.exo", "A.21", &6165, &2fc0
PUTFILE "gallery/output/volume1/smw.png.bbc.exo", "A.22", &6b26, &2fc0
PUTFILE "gallery/output/volume1/smw2.png.bbc.exo", "A.23", &742e, &2fc0
PUTFILE "gallery/output/volume1/sonic.png.bbc.exo", "A.24", &6b47, &2fc0
PUTFILE "gallery/output/volume1/storm.png.bbc.exo", "A.25", &6b19, &2fc0
PUTFILE "gallery/output/volume1/swiv.png.bbc.exo", "A.26", &5ca0, &2fc0
PUTFILE "gallery/output/volume1/xenon2.png.bbc.exo", "A.27", &6af1, &2fc0
PUTFILE "gallery/output/volume1/zarch.png.bbc.exo", "A.28", &7813, &2fc0
PUTFILE "gallery/output/volume1/zelda.png.bbc.exo", "A.29", &7409, &2fc0
PUTFILE "gallery/output/volume1/zool.png.bbc.exo", "A.30", &70e8, &2fc0
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
26 changes: 26 additions & 0 deletions gallery/output/volume2/config.asm
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
PUTFILE "gallery/output/volume2/simpsons.png.bbc.exo", "A.01", &67af, &2fc0
PUTFILE "gallery/output/volume2/floyd.png.bbc.exo", "A.02", &7bc0, &2fc0
PUTFILE "gallery/output/volume2/archimedes.png.bbc.exo", "A.03", &7d13, &2fc0
PUTFILE "gallery/output/volume2/diamond.png.bbc.exo", "A.04", &6649, &2fc0
PUTFILE "gallery/output/volume2/neon.png.bbc.exo", "A.05", &6a28, &2fc0
PUTFILE "gallery/output/volume2/homer.png.bbc.exo", "A.06", &703a, &2fc0
PUTFILE "gallery/output/volume2/tut.png.bbc.exo", "A.07", &503c, &2fc0
PUTFILE "gallery/output/volume2/beeb.png.bbc.exo", "A.08", &581a, &2fc0
PUTFILE "gallery/output/volume2/birds.png.bbc.exo", "A.09", &5517, &2fc0
PUTFILE "gallery/output/volume2/elite.png.bbc.exo", "A.10", &69d8, &2fc0
PUTFILE "gallery/output/volume2/fractal.png.bbc.exo", "A.11", &4fc2, &2fc0
PUTFILE "gallery/output/volume2/ghostbusters.png.bbc.exo", "A.12", &633f, &2fc0
PUTFILE "gallery/output/volume2/graphics.png.bbc.exo", "A.13", &57ab, &2fc0
PUTFILE "gallery/output/volume2/laser.png.bbc.exo", "A.14", &5811, &2fc0
PUTFILE "gallery/output/volume2/logo.png.bbc.exo", "A.15", &7967, &2fc0
PUTFILE "gallery/output/volume2/marbles.png.bbc.exo", "A.16", &69ac, &2fc0
PUTFILE "gallery/output/volume2/mario.png.bbc.exo", "A.17", &72d8, &2fc0
PUTFILE "gallery/output/volume2/ray1.png.bbc.exo", "A.18", &6cf2, &2fc0
PUTFILE "gallery/output/volume2/ray2.png.bbc.exo", "A.19", &6faf, &2fc0
PUTFILE "gallery/output/volume2/spidey.png.bbc.exo", "A.20", &6e63, &2fc0
PUTFILE "gallery/output/volume2/teapot.png.bbc.exo", "A.21", &52a7, &2fc0
PUTFILE "gallery/output/volume2/terminator.png.bbc.exo", "A.22", &624f, &2fc0
PUTFILE "gallery/output/volume2/tron.png.bbc.exo", "A.23", &5699, &2fc0
PUTFILE "gallery/output/volume2/trooper.png.bbc.exo", "A.24", &5555, &2fc0
PUTFILE "gallery/output/volume2/woody.png.bbc.exo", "A.25", &63e0, &2fc0
PUTFILE "gallery/output/volume2/cube.png.bbc.exo", "A.26", &73b8, &2fc0
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
9 changes: 9 additions & 0 deletions gallery/output/volume3/config.asm
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
PUTFILE "gallery/output/volume3/earth.png.bbc.exo", "A.01", &6285, &2fc0
PUTFILE "gallery/output/volume3/fashion.png.bbc.exo", "A.02", &540a, &2fc0
PUTFILE "gallery/output/volume3/lenna.png.bbc.exo", "A.03", &53e1, &2fc0
PUTFILE "gallery/output/volume3/lighthouse.png.bbc.exo", "A.04", &5104, &2fc0
PUTFILE "gallery/output/volume3/monalisa.png.bbc.exo", "A.05", &668b, &2fc0
PUTFILE "gallery/output/volume3/moon.png.bbc.exo", "A.06", &5621, &2fc0
PUTFILE "gallery/output/volume3/parrot.png.bbc.exo", "A.07", &52f1, &2fc0
PUTFILE "gallery/output/volume3/sharbat.png.bbc.exo", "A.08", &671e, &2fc0
PUTFILE "gallery/output/volume3/tiger.png.bbc.exo", "A.09", &4b79, &2fc0
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
6 changes: 6 additions & 0 deletions gallery/output/wip/config.asm
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
PUTFILE "gallery/output/wip/crossy.png.bbc.exo", "A.01", &6f22, &2fc0
PUTFILE "gallery/output/wip/parrots.png.bbc.exo", "A.02", &69e1, &2fc0
PUTFILE "gallery/output/wip/populous.png.bbc.exo", "A.03", &6a07, &2fc0
PUTFILE "gallery/output/wip/teapot.png.bbc.exo", "A.04", &7680, &2fc0
PUTFILE "gallery/output/wip/test.png.bbc.exo", "A.05", &7f17, &2fc0
PUTFILE "gallery/output/wip/tut2.png.bbc.exo", "A.06", &593b, &2fc0
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
Loading

0 comments on commit b2509a6

Please sign in to comment.