1998-12-22 12:15:45 +00:00
|
|
|
\ Example of the file which is automatically loaded by /boot/loader
|
|
|
|
\ on startup.
|
1999-08-28 00:22:10 +00:00
|
|
|
\ $FreeBSD$
|
1998-12-22 12:15:45 +00:00
|
|
|
|
|
|
|
\ Load the screen manipulation words
|
|
|
|
|
|
|
|
cr .( Loading Forth extensions:)
|
|
|
|
|
|
|
|
cr .( - screen.4th...)
|
2001-12-11 00:49:34 +00:00
|
|
|
s" /boot/screen.4th" O_RDONLY fopen dup fload fclose
|
1998-12-22 12:15:45 +00:00
|
|
|
|
|
|
|
\ Load frame support
|
|
|
|
cr .( - frames.4th...)
|
2001-12-11 00:49:34 +00:00
|
|
|
s" /boot/frames.4th" O_RDONLY fopen dup fload fclose
|
1998-12-22 12:15:45 +00:00
|
|
|
|
|
|
|
\ Load our little menu
|
|
|
|
cr .( - menu.4th...)
|
2001-12-11 00:49:34 +00:00
|
|
|
s" /boot/menu.4th" O_RDONLY fopen dup fload fclose
|
1998-12-22 12:15:45 +00:00
|
|
|
|
|
|
|
\ Show it
|
|
|
|
cr
|
|
|
|
main_menu
|