opnsense-src/share/examples/bootforth/boot.4th
Warner Losh 26a58599a0 Remove $FreeBSD$: one-line forth tag
Remove /^\\[\s*]*\$FreeBSD\$.*$\n/
2023-08-16 11:55:43 -06:00

21 lines
449 B
Forth

\ Example of the file which is automatically loaded by /boot/loader
\ on startup.
\ Load the screen manipulation words
cr .( Loading Forth extensions:)
cr .( - screen.4th...)
s" /boot/screen.4th" O_RDONLY fopen dup fload fclose
\ Load frame support
cr .( - frames.4th...)
s" /boot/frames.4th" O_RDONLY fopen dup fload fclose
\ Load our little menu
cr .( - menu.4th...)
s" /boot/menu.4th" O_RDONLY fopen dup fload fclose
\ Show it
cr
main_menu