Add mmem (Maple Bus storage device) and mlcd (Maple Bus monochrome LCD).
This commit is contained in:
parent
51cd3ce6c9
commit
563bcf3cdb
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: GENERIC,v 1.28 2002/10/30 12:22:55 tsutsui Exp $
|
||||
# $NetBSD: GENERIC,v 1.29 2002/11/15 14:15:36 itohy Exp $
|
||||
#
|
||||
# GENERIC machine description file
|
||||
#
|
||||
|
@ -36,7 +36,7 @@ options KTRACE # system call tracing via ktrace(1)
|
|||
options SYSTRACE # system call vetting via sistrace(1)
|
||||
|
||||
options USERCONF # userconf(4) support
|
||||
#options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
|
||||
#options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
|
||||
|
||||
options SYSVMSG # System V-like message queues
|
||||
options SYSVSEM # System V-like semaphores
|
||||
|
@ -148,8 +148,15 @@ pvr0 at shb?
|
|||
wsdisplay* at pvr? console ?
|
||||
|
||||
maple0 at shb?
|
||||
|
||||
mkbd* at maple? port ? subunit ?
|
||||
wskbd* at mkbd? console ?
|
||||
wskbd* at mkbd? mux 1 console ?
|
||||
|
||||
mms* at maple? port ? subunit ?
|
||||
wsmouse* at mms? mux 0
|
||||
|
||||
mmem* at maple? port ? subunit ?
|
||||
mlcd* at maple? port ? subunit ?
|
||||
|
||||
gdrom0 at shb?
|
||||
|
||||
|
@ -182,3 +189,4 @@ pseudo-device loop # network loopback
|
|||
pseudo-device pty # pseudo-terminals
|
||||
pseudo-device rnd # /dev/random and in-kernel generator
|
||||
pseudo-device clockctl # user control of clock subsystem
|
||||
pseudo-device wsmux # mouse & keyboard multiplexor
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: files.dreamcast,v 1.20 2002/09/06 13:18:43 gehenna Exp $
|
||||
# $NetBSD: files.dreamcast,v 1.21 2002/11/15 14:15:36 itohy Exp $
|
||||
|
||||
# maxpartitions must be first item in files.${MACHINE}
|
||||
maxpartitions 8
|
||||
|
@ -64,6 +64,14 @@ device mms: wsmousedev
|
|||
attach mms at maple
|
||||
file arch/dreamcast/dev/maple/mms.c mms needs-flag
|
||||
|
||||
device mmem: disk
|
||||
attach mmem at maple
|
||||
file arch/dreamcast/dev/maple/mmemcard.c mmem needs-flag
|
||||
|
||||
device mlcd
|
||||
attach mlcd at maple
|
||||
file arch/dreamcast/dev/maple/mlcd.c mlcd needs-flag
|
||||
|
||||
device pvr: wsemuldisplaydev, rasops16
|
||||
attach pvr at shb
|
||||
file arch/dreamcast/dev/pvr.c pvr needs-flag
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: majors.dreamcast,v 1.3 2002/10/04 18:28:27 elric Exp $
|
||||
# $NetBSD: majors.dreamcast,v 1.4 2002/11/15 14:15:37 itohy Exp $
|
||||
#
|
||||
# Device majors for dreamcast
|
||||
#
|
||||
|
@ -52,3 +52,6 @@ device-major maple char 58 maple
|
|||
device-major clockctl char 59 clockctl
|
||||
device-major systrace char 60 systrace
|
||||
device-major cgd char 61 block 20 cgd
|
||||
|
||||
device-major mmem char 62 block 21 mmem
|
||||
device-major mlcd char 63 mlcd
|
||||
|
|
Loading…
Reference in New Issue