git: 9front

Download patch

ref: 1e07b361502864a9c7cd53b25f29b8580d9444f8
parent: c3bb1fd6da503b1342d05f592e8e1103bd36e400
parent: 5124dfabd4375d3684b5b189fd98313b00c5d0d6
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Mon Dec 2 03:27:49 EST 2019

merge

--- a/sys/src/9/kw/dat.h
+++ b/sys/src/9/kw/dat.h
@@ -72,6 +72,8 @@
 	FPinit,
 	FPactive,
 	FPinactive,
+
+	FPillegal= 0x100,
 };
 
 struct Confmem
--- a/sys/src/9/omap/dat.h
+++ b/sys/src/9/omap/dat.h
@@ -96,6 +96,8 @@
 	FPinit,
 	FPactive,
 	FPinactive,
+
+	FPillegal= 0x100,
 };
 
 struct Confmem
--- a/sys/src/9/pc/main.c
+++ b/sys/src/9/pc/main.c
@@ -589,7 +589,6 @@
 	p->pcycles = -p->kentry;
 
 	memset(p->gdt, 0, sizeof(p->gdt));
-	p->ldt = nil;
 	p->nldt = 0;
 	
 	memset(p->dr, 0, sizeof(p->dr));
--- a/sys/src/9/pc/vgai81x.c
+++ b/sys/src/9/pc/vgai81x.c
@@ -55,7 +55,6 @@
 {
 	Pcidev *p;
 	int size;
-	Mach *mach0;
 	ulong *pgtbl, *rp, fbuf, fbend;
 	
 	if(scr->mmio)
--