1999-07-08  Russell Marks  <rus@cartman>

	* Version 1.1.

	* common.c: new `-m' option, causes modification of `colour' key
	messages in ROM (no effect when using builtin ROM), to make them
	more understandable when using nc100em. For example, with `-m',
	nc100em changes "YELLOW & RED" to "INSERT & LEFT".

	* Added parallel printer support. If any printing takes place, the
	raw output is dumped in ~/nc100/printout.dat, appending output
	onto the end of the file if it already exists. You could then
	print this, or, um, something else. :-)

	* The stop-dead key is now F8 in all versions (to keep it out of
	the way a bit), with F10 doing the `nice' context-saving exit.
	(Using F5 for a context-saving exit still works though.)

	* TTY_SERIAL is no longer optional. Since it's not enabled by
	default any more (except in the tty version, where it's required
	for the thing to work at all! :-)), there's no reason not to have
	it compiled in.

1999-07-07  Russell Marks  <rus@cartman>

	* common.c: made usage message a bit more accurate for the GTK+
	version, which now supports `-H' to list standard GTK+ options
	that it automagically accepts (things like `--display').

	* gtkmain.c: got a clue and used an image rather than a
	pixmap. Makes it a lot faster. :-) It's now about the same
	speed as the Xlib version. It also now uses a more precisely
	incremental update method, updating the minimum (byte-aligned)
	rectangle necessary, rather the minimum number of (full-width)
	lines.

1999-07-05  Russell Marks  <rus@cartman>

	* nc100em.1: fixed some bugs. Most notably, the default refresh
	rate is *10*, not 2!

	* Renamed svgalib version (formerly `nc100em') to `snc100em', to
	avoid the annoying confusion between nc100em (all versions
	generically) and, er, nc100em (previously, the svgalib version).
	Renamed main.c to smain.c to reflect this.

	* common.c: you can now set the default scale with `-S'. Only the
	GTK+ version takes notice of this currently.

	* Makefile: er, no, they won't be compiling xz81 I'd have thought.
	This is nc100em you eeeediot! :-)

	* z80.c: fixed a race condition when waiting for signal, but in
	practice it must have been very rare and you'd probably not have
	noticed it anyway (you'd have `lost' an interrupt, effectively).

	* common.c: now assumes the screen address is F000h when booting,
	which makes it look a bit less messy (particularly in the GTK+
	version).

	* gtkmain.c: GTK+-based version (gnc100em), supports runtime
	change of scale, and has the NC100 screen in a scrollable
	window, so you can use a scaled-up display without needing to
	accommodate such a wide window as with xnc100em.

1999-06-17  Russell Marks  <rus@cartman>

	* xmain.c: added support for `delete window' message from
	window manager - it acts like F5 (doing a graceful
	context-saving exit). (The code is pinched from dosemu, which
	in turn pinched it from xloadimage. :-))

	* xmain.c: X version doesn't have serial support always enabled
	any more. You have to specifically choose to have it, with the
	`-s' option. I think this makes a lot more sense than the old
	behaviour, which in retrospect was pretty broken.

	* README: changed ftp.nvg.unit.no reference to URL format.

1999-06-15  Russell Marks  <rus@cartman>

	* xmain.c: fixed the old bug where the X version wasn't redrawing.
	This was due to Expose events on the image window not being
	propagated to the parent (the slightly larger `borderwin').

1999-06-11  Russell Marks  <rus@cartman>

	* README: removed slightly unfair comment about the ROM not being
	any good. Also corrected IMC reference in copyright - a fair chunk
	of the X code is his too, not just the Z80 emulation.

1999-05-29  Russell Marks  <rus@lifeson>

	* common.c: gave IMC credit in usage message, and mentioned
	default refresh rate for `-r'.

1999-05-24  Russell Marks  <rus@lifeson>

	* xmain.c: made display differential like the svgalib version, so
	it only outputs lines which need to be output.

	* nc100em.1: clarified setup instructions slightly.

1999-05-22  Russell Marks  <rus@lifeson>

	* xmain.c: added support for bitdepths other than 1-bit and
	8-bit. Thanks to Steven Flintham for pointing this out
	(bizarrely, I seemed to have neglected to mention it in any
	docs). It's not as fast as it could be, but it should at least
	work on all bitdepths.

1999-05-21  Russell Marks  <rus@lifeson>

	* xmain.c: fixed an embarrassing bug (inappropriate code left over
	from xz80) which meant you couldn't use the left shift key to
	uppercase alphabetic chars. What can I say, except possibly that I
	use the right shift key... :-) Thanks to Steven Flintham for
	pointing out this bug. Also added support for Super/Hyper
	modifiers as alternative ways of getting `Function' - so on a
	Win95 keyboard under XFree86, you can use the win or menu keys to
	get it.

1999-04-24  Russell Marks  <rus@lifeson>

	* main.c: added support for left-win as `Function' - probably
	preferable to using Insert :-), but only works on a Win95
	keyboard.

1999-04-11  Russell Marks  <rus@lifeson>

	* Version 1.0.

	* zcntools.c: created, based on zcndisk. An mtools-like set of
	utils for working with ZCN disk images. This is so much better
	than zcndisk it hurts. :-) The only real thing missing is a way
	for `zcnls' to show files in all user areas.

1999-04-10  Russell Marks  <rus@lifeson>

	* common.c: previously serial input could have effectively
	generated multiple bytes from only one actual input byte.

	* Added man pages.

	* main.c: tnc100em now doesn't ever save the RAM.

	* `makecard' is now `makememcard'. It now does some error
	checking, and is installed by `make install'.

	* PD ROM is now builtin. Also added `-p' option, to force use of
	it (useful for booting a file), and made boot-file code less
	reliant on people being clueful. :-)

	* common.c: now assumes nc100.{card,ram,rom} are in ~/nc100.
	Changed zcndisk similarly.

	* common.c: if USE_MMAP_FOR_CARD is defined, it now uses mmap() to
	read/write the card image. This means a faster start/stop, and it
	should only read the card when it needs to (this is certainly the
	case on Linux, anyway). I considered using this approach to
	loading the ROM too, but it doesn't seem worth the hassle for that
	somehow.

1999-04-09  Russell Marks  <rus@lifeson>

	* main.c: svgalib version now supports a larger display. Use
	page-up to get the leftmost 320x64 part of the screen in 320x200
	mode, page-down to see the rightmost 320x64 similarly, and end to
	return to the usual display.

1999-04-02  Russell Marks  <rus@lifeson>

	* z80.c: reordered an if() in the TTY_SERIAL code to short-cut out
	earlier in most cases, making it roughly 2% faster. Also changed a
	couple of mainloop()'s unsigned char vars to unsigned ints, which
	resulted in a ~4% speed-up. (It's possible the latter is
	alignment-related and is only helpful on 486s, but I imagine it's
	unlikely to hurt much on other machines. Besides, most machines
	these days will easily run nc100em full-speed either way, so
	optimising for 486s wouldn't be a bad idea. ;-))

1999-03-31  Russell Marks  <rus@lifeson>

	* Separated out much common code from nc100em/tnc100em/xnc100em
	into common.c, and ANSIfied the code somewhat.

	* main.c: now uses differential screen updating (only based on
	whole lines, so it's a bit crude, but better than nothing), and
	the whole screen is now black-on-white rather than just the
	NC100-screen bit of it (i.e. the NC100's screen is surrounded by
	white rather than black).

	* Speed control now works. It goes at 4.606MHz with real-time
	interrupts if it can - if it can't, it slows down interrupts
	to match, which should avoid breaking anything overly
	sensitive on the emulated NC. (FWIW, my 66MHz 486 runs nc100em
	at about two-thirds speed, so if you have a remotely modern
	computer it should run just fine. :-)) Also, fixed the old
	problem of disabled interrupts disabling screen/keyboard
	update.

1999-02-27  Russell Marks  <rus@lifeson>

	* Fixed main.c and xmain.c to not assume struct sigaction's
	sa_mask can be zeroed with a simple `=0' (this fix needed for
	glibc).

1999-02-15  Russell Marks  <rus@lifeson>

	* main.c: now uses svgalib's raw keyboard support.

1999-01-05  Russell Marks  <rus@lifeson>

	* Added `romdump' directory.

	* main.c (and xmain.c): kludged it so that if ROM v1.00 is loaded,
	it patches the ROM to not use an is-time-set test which would be
	no fun at all to emulate. (v1.00 seems to be very pedantic about
	the time being set, unlike v1.06.)

Tue Oct 14 00:59:16 1997  Russell Marks  <rus@lifeson>

	* nc100rom.z: fixed a stupid bug where A was corrupted by the
	power-on context restoring routine.

Sat Feb  1 01:23:11 1997  Russell Marks  <rus@lifeson>

	* Version 0.1.

Fri Nov 22 00:25:45 1996  Russell Marks  <rus@lifeson>

	* z80.c: fixed problem which surfaced running zselx. Previously it
 	didn't store up interrupts received while ints were disabled. Also
 	made it avoid redisplaying screen twice when an int happens in the
 	middle of a DD/FD instruction (and is thus delayed until after the
	completion of the whole instruction).

Thu Aug 29 13:43:00 1996  Russell Marks  <rus@lifeson>

	* main.c: made tnc100em hold down shifts twice as long. It was a
	bit dodgy as was.

Thu Jul  4 01:04:15 1996  Russell Marks  <rus@lifeson>

	* main.c: (and xmain.c) made serial support much better.

	* xmain.c: added, based on main.c - X version.

Wed Jul  3 16:12:11 1996  Russell Marks  <rus@lifeson>

	* main.c: added real-time-clock support (read-only, of course).

	* z80.c: fixed the Big Bug (tm). It was interrupting half-way
	through dd/fd-type instructions.

Sun Mar 24 19:02:12 1996  Russell Marks  <rus@lifeson>

	* main.c: found an embarrassing bug. (There was an '#ifdef' which
 	should have read '#ifndef'.)

Mon Feb 26 02:07:29 1996  Russell Marks  <rus@lifeson>

	* nc100rom.z: created. It's a PD replacement ROM I hacked up which
	is just capable enough to run ZCN nicely.

	* Serial mostly working. Slows it down a lot. :-( Also, when a
	process writing exits, you get a spurious char.

	* Got the ROM software working. Still have serial and time chip
	emulation to do.

Sun Feb 25 23:25:06 1996  Russell Marks  <rus@lifeson>

	* Adapted from Z81 (which was in turn adapted from my svgalib port
	of xz80).
