Skip to content

Commit 183793e

Browse files
committed
Import of KCemu release 0.3.7beta5
1 parent f5dfe58 commit 183793e

File tree

284 files changed

+37751
-17123
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

284 files changed

+37751
-17123
lines changed

ABOUT-NLS

Lines changed: 203 additions & 105 deletions
Large diffs are not rendered by default.

COPYING

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ convey the exclusion of warranty; and each file should have at least
291291
the "copyright" line and a pointer to where the full notice is found.
292292

293293
<one line to give the program's name and a brief idea of what it does.>
294-
Copyright (C) 19yy <name of author>
294+
Copyright (C) <year> <name of author>
295295

296296
This program is free software; you can redistribute it and/or modify
297297
it under the terms of the GNU General Public License as published by
@@ -313,7 +313,7 @@ Also add information on how to contact you by electronic and paper mail.
313313
If the program is interactive, make it output a short notice like this
314314
when it starts in an interactive mode:
315315

316-
Gnomovision version 69, Copyright (C) 19yy name of author
316+
Gnomovision version 69, Copyright (C) year name of author
317317
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
318318
This is free software, and you are welcome to redistribute it
319319
under certain conditions; type `show c' for details.

ChangeLog

Lines changed: 105 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,108 @@
1+
2003-04-01 Torsten Paul <[email protected]>
2+
3+
* some changes to allow compilation in the MinGW/MSYS environment
4+
5+
* include/ui/sdlmtk/*, src/ui/sdlmtk/*: small toolkit for a simple
6+
libSDL based user interface
7+
8+
* src/libaudio/load_oss.c: made optional, added check for
9+
necessary headerfile to configure.in
10+
11+
* src/kc/kc.cc: added command line switch for showing a verbose
12+
listing of available emulations
13+
14+
* src/kc/keyb0.cc: latch key value only at start of keyboard scan
15+
to prevent missing recognition of the shift keys
16+
17+
* src/kc/mod_rtc.cc: use sys_localtime() to fetch time
18+
19+
* src/kc/rc.cc: load rc-file from current working directory too
20+
(order is $HOME/.kcemurc, $cwd/.kcemurc, DATADIR/.kcemurc)
21+
22+
* src/kc/wav.cc: define M_PI if not already defined
23+
24+
2003-03-27 Torsten Paul <[email protected]>
25+
26+
* src/kc/kc.cc, src/kc/mod_list.cc: added command line switch to
27+
set/add modules at startup
28+
29+
2003-03-26 Torsten Paul <[email protected]>
30+
31+
* src/ui/gtk/ui_gtk.cc, src/kc/mod_ramf.cc, src/kc/rc.cc: don't
32+
use environment variable for home directory but overwritable
33+
global variable kcemu_homedir; src/libdbg/dbg.cc will still use
34+
the environment
35+
36+
* src/kc/kc.cc: added command line switches for fullscreen mode
37+
and overwriting the home directory
38+
39+
2003-03-23 Torsten Paul <[email protected]>
40+
41+
* src/ui/sdl/ui_sdl.cc: hide cursor on key press and show it on
42+
mouse move events
43+
44+
* src/sys/*/sys_localtime.c: added system dependend call to
45+
retrieve the local time of the system (for the RTC module)
46+
47+
* src/kc/z80.cc: removed get_time()
48+
49+
* upgraded to automake 1.6, autoconf 2.57, gettext 0.10.40
50+
51+
2003-03-12 Torsten Paul <[email protected]>
52+
53+
* src/ui/generic/ui_0.cc: use get_char_rom() instead of the hard
54+
coded char set from font0.h
55+
56+
* src/kc/memory*.[h,cc]: changed getIRM() to get_irm() and added
57+
get_char_rom()
58+
59+
2003-03-10 Torsten Paul <[email protected]>
60+
61+
* src/ui/generic/ui_9.cc: change window size for hires modes
62+
instead of crippling the characters to 4x8 pixels
63+
64+
2003-03-08 Torsten Paul <[email protected]>
65+
66+
* include/kc/gdc.h, src/kc/gdc.cc: added function to emulate the
67+
vertical retrace bit of the control register -- needed by the
68+
Z1013 CP/M to prevent the status line from flickering
69+
70+
* include/kc/mod_rtc.h, src/kc/mod_rtc.cc: minimal RTC support to
71+
allow date/time display for the Z1013 CP/M; the values are read
72+
directly from the system clock and setting the RTC is not yet
73+
supported
74+
75+
* src/kc/mod_list.cc, include/ui/gtk/module.h,
76+
src/ui/gtk/module.cc: let the Z1013 have 8 module slots
77+
78+
* src/kc/fdc_cmd.cc: return almost correct result values for
79+
FORMAT_A_TRACK; sector number is automatically incremented but for
80+
now the returned sector is the one when starting the command; set
81+
data transfer flag because the FDC needs to receive the sector
82+
information after the FORMAT_A_TRACK command execution started
83+
84+
2003-03-07 Torsten Paul <[email protected]>
85+
86+
* include/kc/gdc.h, src/kc/gdc.cc: support all four subscreens
87+
that are possible in textmode; fixes the fancy scrolling routine
88+
of the Z1013 CP/M which uses 3 subscreens -- two for screen
89+
scrolling without the need to actually copy any data and one for
90+
the status line
91+
92+
2003-03-03 Torsten Paul <[email protected]>
93+
94+
* include/kc/keyb0k.h: added 8x8 keyboard matrix for A2 system rom
95+
96+
2003-02-26 Torsten Paul <[email protected]>
97+
98+
* src/kc/fdc.cc: splitted i/o interface into separate classes for
99+
the different systems
100+
101+
2003-02-20 Torsten Paul <[email protected]>
102+
103+
* include/kc/pio.h: changed PIOCallbackInterface to allow return
104+
values for the input callbacks
105+
1106
2003-02-16 Torsten Paul <[email protected]>
2107

3108
* src/kc/disk.cc: check if FDC is available

DISK/Makefile.am

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ pkgdata_DATA = \
55
tools.dump \
66
cpmz9.dump \
77
a5105sys.dump \
8-
microdos.dump
8+
microdos.dump \
9+
z1013cpm.dump
910

1011
EXTRA_DIST = $(pkgdata_DATA)

0 commit comments

Comments
 (0)