This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/Makefile b/Makefile | |
index 01f02a31a..038038abc 100644 | |
--- a/Makefile | |
+++ b/Makefile | |
@@ -88,7 +88,7 @@ | |
# zx+3: ZX Spectrum +3 | |
# zxdiv: ZX Spectrum 128K with DivIDE/DivMMC interface | |
-TARGET=rc2014 | |
+TARGET=z80pack |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: luna88k/cbus/cbus.c | |
=================================================================== | |
RCS file: /cvs/src/sys/arch/luna88k/cbus/cbus.c,v | |
diff -u -r1.9 cbus.c | |
--- luna88k/cbus/cbus.c 11 Mar 2021 11:16:58 -0000 1.9 | |
+++ luna88k/cbus/cbus.c 27 May 2024 12:43:51 -0000 | |
@@ -36,11 +36,16 @@ | |
#define CBUS_DEBUG | |
#endif | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: luna88k/cbus/cbus.c | |
=================================================================== | |
RCS file: /cvs/src/sys/arch/luna88k/cbus/cbus.c,v | |
diff -u -r1.9 cbus.c | |
--- luna88k/cbus/cbus.c 11 Mar 2021 11:16:58 -0000 1.9 | |
+++ luna88k/cbus/cbus.c 4 May 2024 07:46:55 -0000 | |
@@ -36,11 +36,16 @@ | |
#define CBUS_DEBUG | |
#endif | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- vm/mpu88xx0.cpp.orig Fri Feb 23 08:37:00 2024 | |
+++ vm/mpu88xx0.cpp Fri Feb 23 11:21:39 2024 | |
@@ -37,6 +37,11 @@ | |
cmmu[0].reset(new m88200(this, 7)); | |
cmmu[1].reset(new m88200(this, 6)); | |
+ // xmem の writeback バグが修正されているバージョンを設定する。(所有している実機にあわせ 0x9) | |
+ // OpenBSD の sys/arch/m88k/m88k/m8820x_machdep.c::m8820x_apr_cmode() 参照。 | |
+ cmmu[0]->SetVersion(0x9); | |
+ cmmu[1]->SetVersion(0x9); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# partially taken from 7.1: ports/net/curl/Makefile | |
# works fine with curl-7.85.0 | |
# | |
# speed up some time-consuming configure tests | |
export curl_cv_func_select_args="int,fd_set *,struct timeval *,int" | |
export curl_cv_func_recv_args="int,void *,size_t,int,ssize_t" | |
export curl_cv_func_send_args="int,const void *,size_t,int,ssize_t" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/sjson.h b/sjson.h | |
index 24a0d88..3069b13 100644 | |
--- a/sjson.h | |
+++ b/sjson.h | |
@@ -196,10 +196,37 @@ typedef struct sjson_node | |
}; | |
} sjson_node; | |
+typedef struct sjson__str_page | |
+{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Mon Jan 30 13:07:30 JST 2023 | |
aurora.in.nk-home.net | |
cd /usr/src/gnu/usr.bin/perl && exec make -f Makefile.bsd-wrapper1 perl.build | |
cd /usr/src/gnu/usr.bin/perl/obj && exec make | |
LD_LIBRARY_PATH=/usr/src/gnu/usr.bin/perl/obj ./miniperl -Ilib make_ext.pl cpan/version/pm_to_blib MAKE="make" LIBPERL_A=libperl.so.23.0 | |
Running pm_to_blib for cpan/version directly | |
LD_LIBRARY_PATH=/usr/src/gnu/usr.bin/perl/obj ./miniperl -Ilib make_ext.pl cpan/perlfaq/pm_to_blib MAKE="make" LIBPERL_A=libperl.so.23.0 | |
Running pm_to_blib for cpan/perlfaq directly | |
LD_LIBRARY_PATH=/usr/src/gnu/usr.bin/perl/obj ./miniperl -Ilib make_ext.pl cpan/parent/pm_to_blib MAKE="make" LIBPERL_A=libperl.so.23.0 | |
Running pm_to_blib for cpan/parent directly |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sun Jan 29 12:31:13 JST 2023 | |
aurora.in.nk-home.net | |
cd /usr/src/gnu/usr.bin/perl/obj && PATH="/bin:/usr/bin:/sbin:/usr/sbin" exec /bin/sh /usr/src/gnu/usr.bin/perl/Configure -dse -Dopenbsd_distribution=defined -Dmksymlinks | |
(I see you are using the Korn shell. Some ksh's blow up on Configure, | |
mainly on older exotic systems. If yours does, try the Bourne shell instead.) | |
Sources for perl5 found in "/usr/src/gnu/usr.bin/perl". | |
First let's make sure your kit is complete. Checking... | |
Locating common programs... | |
Checking compatibility between /bin/echo and builtin echo (if any)... | |
Symbolic links are supported. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: sys/arch/luna88k/stand/boot/Makefile | |
=================================================================== | |
RCS file: /cvs/src/sys/arch/luna88k/stand/boot/Makefile,v | |
retrieving revision 1.12 | |
diff -u -r1.12 Makefile | |
--- sys/arch/luna88k/stand/boot/Makefile 10 Dec 2019 11:28:13 -0000 1.12 | |
+++ sys/arch/luna88k/stand/boot/Makefile 14 Dec 2022 13:34:32 -0000 | |
@@ -31,9 +31,11 @@ | |
SRCS+= boot.c | |
SRCS+= cons.c prf.c awaitkey.c |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PIO set Start End | |
LUNA 88K2 SELF DIAGONOSIS TEST Ver 1.2 | |
1. MULTI CPU Test. | |
3 Port Memory clear Start End | |
Main memory size check (Memory : 07000000 Hex byte) | |
LCD Display Check. | |
Main Memory Clear ( 3f0000H ) | |
CMMU set Start End | |
CPU 0 OK CPU 2 OK CPU 1 OK |