summaryrefslogtreecommitdiffstats
path: root/qemu/roms/openbios/packages/cmdline.fs
blob: 70d3aa2d52a05a708b2089c16c13fe8f649b0fd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
\ tag: Utility functions
\ 
\ deblocker / filesystem support
\ 
\ Copyright (C) 2003, 2004 Samuel Rydh
\ 
\ See the file "COPYING" for further information about
\ the copyright and warranty status of this work.
\ 

\ -------------------------------------------------------------
\ command line editor (/packages/cmdline)
\ -------------------------------------------------------------

[IFDEF] CONFIG_CMDLINE

dev /packages
new-device
  " cmdline" device-name

  :noname
    " " [active-package], open-package
    ?dup if
      " cmdline" rot $call-method
    else
      ." cmdline is missing!" cr
    then
    \ cmdline must close itself upon return
  ;

  :noname
    [ ['] (lit) , swap , ] to outer-interpreter
  ; SYSTEM-initializer

  external
  : prepare 0 to my-self ;

finish-device

[THEN]
device-end