-
Content Count
153 -
Joined
-
Last visited
-
Days Won
3
Files posted by JimmyDansbo
-
IRClock
By JimmyDansbo in Misc Apps
IRClock shows a digital clock in the upper right corner of the screen. This way it is possible to keep an eye on the clock even while being productive on the Commander X16.
The program copies it self into golden RAM, starting at $0400 and takes up a total of 195 bytes. After initialization, the program does not need any of the memory usually used for BASIC and can be overwritten.
When the program is running, the current hour, minute and second can be poked into addresses $400, $401 and $402 respectively.
The values must be BCD encoded which essentially means, just poke them in as hexadecimal values i.e. 11:04 would be poke'd in like this:
Result is immediately visible.
2 downloads
Submitted
-
Fast RAM test
By JimmyDansbo in Misc Apps
While waiting for a release of actual hardware, I thought it might be a good thing to have some software to test the memory in the banked area.
I stumpled upon an old article about a fast memory test procedure and created this small program to test alle available memory banks except bank#0.
Be warned, this is a destructive test, but it only works on memory area $A000-$BFFF and only on bank 1+.
You can find the original article here: https://cx16.dk/fastramtest/
14 downloads
Submitted
-
Ghost Crusher
By JimmyDansbo in Games
In this game you need to crush ghosts between walls before the ghosts catch (touch) you.
Red walls can not be moved, but green walls can be pushed around.
Be careful as ghosts can walk diagonally.
---
At the moment there are only 4 levels.
In level 4 you will encounter a poltergeist. Poltergeists can only be killed against a static (red) wall.
Let me know what you think about the difficulty level. For each level I can control:
Number of walls and static walls Number of ghosts and their speed Number of poltergeists and their speed Number of portals and how long it takes before they let a dimensional ghost through.31 downloads
Updated
-
CX16-Maze
By JimmyDansbo in Games
A game where you have to visit all fields in a maze with your "block".
For the latest version and to see the source, go to https://github.com/JimmyDansbo/cx16-maze
190 downloads
Updated
-
VERA chars
By JimmyDansbo in Graphics Apps
Source code used to generate map of all VERA default characters.
Originally written for older version of ROM/VERA, but quckly edited to work on ROM r37 / VERA 0.9
Compile with:
acme -f cbm -o veratext.prg veratext.asm
23 downloads
Updated