aclock 1.0
Copyright (c) 2002 Thomas Mathys
killer@vantage.ch


what the hell is this ?
-----------------------

well, this is aclock, a silly analog clock program
for menuetos (http://www.menuetos.org).


compiling instructions
----------------------

you have to use nasm to compile aclock. i don't write
programs with fasm, i hate this assembler. if you want
to compile aclock under menuetos, feel free to port
nasm to menuetos.

oh yes, you wanted to know how to compile aclock:

	nasm -f bin aclock.asm -o aclock


configuration
-------------

you might want to change some of the constants defined
somewhere at the top of aclock.asm. especially XPOS
and YPOS might be useful.

aclock can also display the day of week name (Mon, Tue etc.)
but this feature doesn't work correctly on all machines and
so it is disabled per default. if you want to try it out,
uncomment the line

%define SHOW_DAY_OF_WEEK

i might or might not fix this bug in the future =)
maybe it would be better to calculate the day of week
from the date than reading it from the rtc, but that
would blow up the binary, and size *does* matter.