From 5756cf8d2666f7a458b3afc34ead7da8089499c0 Mon Sep 17 00:00:00 2001 From: lpproj Date: Tue, 22 Sep 2015 11:58:25 +0900 Subject: [PATCH] On creating child PSP (func 0x55), copy command line parameters from the parent (required for some device loaders) --- kernel/inthndlr.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kernel/inthndlr.c b/kernel/inthndlr.c index 2aea32c..498cf78 100644 --- a/kernel/inthndlr.c +++ b/kernel/inthndlr.c @@ -1137,6 +1137,8 @@ dispatch: /* Dos Create New Psp & set p_size */ case 0x55: child_psp(lr.DX, cu_psp, lr.SI); + /* copy command line from the parent (required for some device loaders) */ + fmemcpy(MK_FP(lr.DX, 0x80), MK_FP(cu_psp, 0x80), 128); cu_psp = lr.DX; break;