diff --git a/src/compiler/x86/parms.lisp b/src/compiler/x86/parms.lisp index 67655cd..ff801c5 100644 --- a/src/compiler/x86/parms.lisp +++ b/src/compiler/x86/parms.lisp @@ -169,17 +169,17 @@ #!+win32 (progn - (def!constant read-only-space-start #x02000000) - (def!constant read-only-space-end #x020ff000) + (def!constant read-only-space-start #x22000000) + (def!constant read-only-space-end #x220ff000) - (def!constant static-space-start #x02100000) - (def!constant static-space-end #x021ff000) + (def!constant static-space-start #x22100000) + (def!constant static-space-end #x221ff000) - (def!constant dynamic-space-start #x09000000) - (def!constant dynamic-space-end #x29000000) + (def!constant dynamic-space-start #x22300000) + (def!constant dynamic-space-end #x42300000) - (def!constant linkage-table-space-start #x02200000) - (def!constant linkage-table-space-end #x022ff000)) + (def!constant linkage-table-space-start #x22200000) + (def!constant linkage-table-space-end #x222ff000)) #!+linux (progn diff --git a/src/runtime/runtime.c b/src/runtime/runtime.c index a4fc68a..61ff803 100644 --- a/src/runtime/runtime.c +++ b/src/runtime/runtime.c @@ -420,7 +420,7 @@ main(int argc, char *argv[], char *envp[]) #ifdef LISP_FEATURE_WIN32 fprintf(stderr, "\n\ This is experimental prerelease support for the Windows platform: use\n\ -at your own risk. \"Your Kitten of Death awaits!\"\n"); +at your own risk.\n"); fflush(stdout); fflush(stderr); #endif