tree.fs

来自「BIOS Open Platform!」· FS 代码 · 共 73 行

FS
73
字号
\ tag: Device Tree\ \ this code implements IEEE 1275-1994 ch. 3.5\ \ Copyright (C) 2003 Stefan Reinauer\ \ See the file "COPYING" for further information about\ the copyright and warranty status of this work.\ \ root nodenew-device  " OpenBiosTeam,OpenBIOS" device-name  1 encode-int " #address-cells" property  external  : open true ;  : close ;  : decode-unit parse-hex ;  : encode-unit ( addr -- str len )    pocket tohexstr  ;new-device  " aliases" device-name  external  : open true ;  : close ;finish-device  new-device  " openprom" device-name  " BootROM"  device-type  " OpenFirmware 3" model  0 0 " relative-addressing"  property  0 0 " supports-bootinfo"    property  1 encode-int " boot-syntax" property    external  : selftest    ." OpenBIOS selftest... succeded" cr    true  ;  : open true ;  : close ;  new-device    " client-services" device-name    : open true ;    : close ;  finish-devicefinish-device  new-device  " options" device-namefinish-devicenew-device  " chosen" device-name  0 encode-int " stdin" property  0 encode-int " stdout" property  \ " hda1:/boot/vmunix" encode-string " bootpath" property  \ " -as" encode-string " bootargs" property  0 encode-int " memory" property  0 encode-int " mmu" property  externalfinish-device  \ ENDfinish-device

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?