| |
Pixman Account closed
Registered: Dec 2001 Posts: 42 |
Care for a little C64-like coding challenge?
I recently stumbled upon the Android app MOSS which is is based on this:
http://6502asm.com/
The screen RAM starts at $200 and you can do lots of funny things. Resolution is 32x32 pixels. :)
Enjoy!
No IRQs and sound, yet.
But it's a cute toy to play around. Has some nice examples and also a little demo with scroller in the examples dropdown list.
Here's my little toy I wrote in a jiffy:
ldx #$ff
lda #$01
sta $03
loop:
lda $fe
sta $1ff,x
lda $fe
sta $2ff,x
lda $fe
sta $3ff,x
lda $fe
sta $4ff,x
dex
dex
dex
inc $03
dex
bne loop
($fe is the random number generator and $ff gives out the key pressed)
Have fun,
Pix |
|
| |
SIDWAVE Account closed
Registered: Apr 2002 Posts: 2238 |
this website is really missing a feature to attach files in the forums.. so we could send small snips of compiled code.. |
| |
Oswald
Registered: Apr 2002 Posts: 5086 |
where's the challenge? |
| |
soci
Registered: Sep 2003 Posts: 479 |
Oswald:
The challenge is to get people to find the mentioned app somehow, get them to install it on something which can run it and convince them to write code with it using a hardware platform where a proper keyboard is the exception, not the rule.
;) |
| |
Stablizer
Registered: Jan 2016 Posts: 19 |
Very cool effect - this would look cool in between demo pages or after an intro of some sort. :)
-Stab |
| |
Monte Carlos
Registered: Jun 2004 Posts: 358 |
They don't support LAS and TAS. ;-( |
| |
Oswald
Registered: Apr 2002 Posts: 5086 |
no serious demo ever runs wihtout las or tas! |
| |
HCL
Registered: Feb 2003 Posts: 727 |
I just have to give it up.. |
| |
Compyx
Registered: Jan 2005 Posts: 631 |
32x32 pixels: mega-dycp's just became a lot easier, might even ORA that shit. |