to let tty run with its own page table (instead of with the kernel identity

map table), make it map in video memory.

sadly, this breaks tty in non-paged mode.

happily, this simplifies the code by throwing out the messing
around with segments, and throws out vidcopy.s.
This commit is contained in:
Ben Gras
2009-05-12 12:43:18 +00:00
parent 909c1bb8a7
commit dd56aa321f
5 changed files with 72 additions and 172 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ CFLAGS = $(CPPFLAGS)
LDFLAGS = -i
LIBS = -lsys -ltimers
OBJ = tty.o console.o vidcopy.o keyboard.o pty.o rs232.o
OBJ = tty.o console.o keyboard.o pty.o rs232.o
# build local binary
all build: $(DRIVER)