dos33fsprogs/megademo
2018-10-17 14:13:10 -04:00
..
disk megaload: it will never work 2018-10-12 00:35:35 -04:00
images
apple_40_96.inc
arrival.png arrival: erase heart 2018-10-17 00:34:34 -04:00
arrival.s arrival: erase heart 2018-10-17 00:34:34 -04:00
bg_scroll.s
bird_mountain.s megademo: updated bird mountain 2018-10-17 13:52:28 -04:00
c64_opener.s
c64_updated.png
c64.png
check_email.s megademo: auto-detect Apple II vs IIe and patch accordingly 2018-09-29 21:57:22 -04:00
d_hgr.bmp
deater_hgr.bmp
deater_hgr.png
deater.png
delay_a.s
email_40_96.png
falling_apple.s
FAQ
fireworks.s
fs_hgr.bmp
fs_hgr.png
fs.png
fw_background.inc megademo: merge in fireworks for ending 2018-09-26 14:01:14 -04:00
fw_state_machine.s
fw.s megademo: add in mode7 code 2018-10-02 23:04:51 -04:00
gr_copy.s
gr_fast_clear.s megademo: add in mode7 code 2018-10-02 23:04:51 -04:00
gr_hlin_double.s
gr_hline.s
gr_offsets.s megademo: split off gr_offsets 2018-09-17 13:26:45 -04:00
gr_pageflip.s
gr_putsprite.s
gr_scroll.s
gr_setpage.s
gr_unrolled_copy.s
hardware.inc
hgr.s
KATC.BIN.lz4 fireworks: merge in the bird_mountain sequence 2018-09-26 23:52:36 -04:00
leaving.png megademo: remove extra sprites 2018-10-15 00:57:23 -04:00
leaving.s leaving: works now! 2018-10-15 16:30:56 -04:00
letters.s megademo: updated bird mountain 2018-10-17 13:52:28 -04:00
lg_hgr.png
lg.png
lz4_decode.s
Makefile megademo: update text in bird_mountain 2018-10-17 12:04:14 -04:00
megademo.dsk megademo: working on leaving scene 2018-10-15 00:07:29 -04:00
megademo.s megademo: start messing with mode7 code 2018-10-17 14:09:01 -04:00
megaload.s megaload: get actual RTS fix from qkumba 2018-10-15 12:23:00 -04:00
mode7_sprites.inc
mode7_zp.inc
mode7.s megademo: mode7: more minor cleanups 2018-10-17 14:13:10 -04:00
move_letters.s
multiply_fast.s
random16.s
README
SB_BACKGROUNDC.BIN.lz4 megademo: add in space_bars code 2018-10-13 19:03:38 -04:00
screen_split.s megademo: add in space_bars code 2018-10-13 19:03:38 -04:00
SIZE megademo: updated bird mountain 2018-10-17 13:52:28 -04:00
space_bars.s megademo: spacebars finally working 2018-10-13 23:35:03 -04:00
starring_1.png
starring_2.png
starring_3_hgr.png
starring_3.png
starring_people.s
starring.s
starry_sky.scroll
takeoff_hgr.png
takeoff.png
takeoff.s
text_print.s megademo: add in space_bars code 2018-10-13 19:03:38 -04:00
tfv_sprites.inc arrival: working on heart 2018-10-17 00:00:03 -04:00
TODO megademo: update text in bird_mountain 2018-10-17 12:04:14 -04:00
vapor_lock.s
wait_keypress.s
waterfall_page1.inc
waterfall_page2.inc
waterfall.s
zp.inc megademo: spacebars finally working 2018-10-13 23:35:03 -04:00


Memory Map:
	$0000-$0100 = ZERO PAGE
	$0100-$0200 = STACK
	$0400-$0800 = TEXT/GR PAGE0
	$0800-$0C00 = TEXT/GR PAGE1
	$0C00-$0fff = we use this as TEXT/GR offscreen buffer
	$1000-$1fff = 4k free
	$2000-$3fFF = HGR1 page	; note we never use HGR2 ($4000-$6000)
	$4000-$9600 = roughly 20k(?)
	$9600-$BFFF = DOS3.3
	$C000-$FFFF = peripherals/ROM

	Largest can load from $4000 to $9600 = 22,016
	Largest can load from $1000 to $9600 = 34,304
	$4000-$C000 = 32768


C64:
Apple II:
Starring:
	Three pages page flipping.  Hires colors subset of Lores so
	can replicate a blocky color image.  Could in theory animate this
	at 60Hz.  Also could flip between 4 pages, but need the 8k of
	HGR page2.

	For cycle-counting timing, jmp one into a bit $C055 instruction
	which is EOR $C0,X (4 cycles)

	Note, discover that the LORES and HIRES pages aren't exact matches
	for each other, even when using same color.  Half-pixel off?

E-mail:
	Half screen text, half 40x96 lores.
	Text is also interlaced top/bottom to create new chars (including
	some lowercase) on Apple II+ and before w/o lower case.
	Trouble as the built-in font is offset a frame on II vs IIe?
	Also annoyance, my GR compressor uses Grey2 (color $a) as encoding,
	which means can't use a GR image to hold plain black spaces (char $a0)