add new FREECG98.BMP file

This commit is contained in:
Wengier
2020-12-30 05:07:37 -05:00
parent df425883fd
commit 32a0b52ee8
8 changed files with 15 additions and 7 deletions

View File

@@ -103,9 +103,9 @@
option "locking disk image mount" is added to the
[dosbox] section which when set to false (or if the
user mounts the image files read-only) will bypass
the locking of image files. Also improved the file
locking function, which can be disabled by setting
"share" to "false" in [dos] section. (Wengier)
the locking of image files. Also improved the DOS
file locking function, which can be disabled by
setting "share=false" in [dos] section. (Wengier)
- You can now use a single mapper file for both SDL1
and SDL2 versions of DOSBox-X! The new mapper file
will be divided to sections [SDL1] and [SDL2] for

Binary file not shown.

Before

Width:  |  Height:  |  Size: 512 KiB

After

Width:  |  Height:  |  Size: 512 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 512 KiB

View File

@@ -1,3 +1,11 @@
The discussion for the new FREECG98.BMP file can be found at:
https://github.com/joncampbell123/dosbox-x/issues/2132
It is based on the Unifont Japanese TrueType font:
http://unifoundry.com/unifont/index.html
TODO:
Write a Linux-based utility

View File

@@ -1745,7 +1745,7 @@ timeout = 0
#DOSBOX-X-ADV:# msdos5 MS-DOS 5.x behavior, entry point becomes one of two fixed addresses
#DOSBOX-X-ADV:# direct Non-standard behavior, encode the CALL FAR directly to the entry point rather than indirectly
#DOSBOX-X-ADV:# Possible values: auto, off, msdos2, msdos5, direct.
# share: Report SHARE.EXE as resident. Does not actually emulate SHARE functions.
# share: Report SHARE.EXE as resident. This will allow file locking to be performed, although not all SHARE functions are emulated.
#DOSBOX-X-ADV:# minimum dos initial private segment: In non-mainline mapping mode, where DOS structures are allocated from base memory, this sets the
#DOSBOX-X-ADV:# minimum segment value. Recommended value is 0x70. You may reduce the value down to 0x50 if freeing
#DOSBOX-X-ADV:# up more memory is important. Set to 0 for default.

View File

@@ -662,7 +662,7 @@ timeout = 0
# hma: Report through XMS that HMA exists (not necessarily available)
# ansi.sys: If set (by default), ANSI.SYS emulation is on. If clear, ANSI.SYS is not emulated and will not appear to be installed.
# NOTE: This option has no effect in PC-98 mode where MS-DOS systems integrate ANSI.SYS into the DOS kernel.
# share: Report SHARE.EXE as resident. Does not actually emulate SHARE functions.
# share: Report SHARE.EXE as resident. This will allow file locking to be performed, although not all SHARE functions are emulated.
# minimum mcb free: Minimum free segment value to leave free. At startup, the DOS kernel will allocate memory
# up to this point. This can be used to deal with EXEPACK issues or DOS programs that cannot
# be loaded too low in memory. If you want more free conventional memory to be reported,

View File

@@ -1745,7 +1745,7 @@ timeout = 0
# msdos5 MS-DOS 5.x behavior, entry point becomes one of two fixed addresses
# direct Non-standard behavior, encode the CALL FAR directly to the entry point rather than indirectly
# Possible values: auto, off, msdos2, msdos5, direct.
# share: Report SHARE.EXE as resident. Does not actually emulate SHARE functions.
# share: Report SHARE.EXE as resident. This will allow file locking to be performed, although not all SHARE functions are emulated.
# minimum dos initial private segment: In non-mainline mapping mode, where DOS structures are allocated from base memory, this sets the
# minimum segment value. Recommended value is 0x70. You may reduce the value down to 0x50 if freeing
# up more memory is important. Set to 0 for default.

View File

@@ -118,7 +118,7 @@ static bool DOS_MultiplexFunctions(void) {
/* ert, 20100711: Locking extensions */
case 0x1000: /* SHARE.EXE installation check */
if (enable_share_exe) {
reg_al = 0xff; /* Pretend that share.exe is installed.. Of course it's a bloody LIE! */
reg_al = 0xff; /* Report that share.exe is installed. Of course not all SHARE functions are emulated. */
}
return true;
case 0x1216: /* GET ADDRESS OF SYSTEM FILE TABLE ENTRY */