diff options
-rw-r--r-- | sys/boot/forth/loader.4th | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/sys/boot/forth/loader.4th b/sys/boot/forth/loader.4th index e9369df..696985f 100644 --- a/sys/boot/forth/loader.4th +++ b/sys/boot/forth/loader.4th @@ -24,29 +24,29 @@ \ \ $FreeBSD$ -s" arch-alpha" environment? [if] [if] - s" loader_version" environment? [if] - 3 < [if] - .( Loader version 0.3+ required) cr - abort - [then] - [else] - .( Could not get loader version!) cr - abort - [then] -[then] [then] - -s" arch-i386" environment? [if] [if] - s" loader_version" environment? [if] - 8 < [if] - .( Loader version 0.8+ required) cr - abort - [then] - [else] - .( Could not get loader version!) cr - abort - [then] -[then] [then] +\ s" arch-alpha" environment? [if] [if] +\ s" loader_version" environment? [if] +\ 3 < [if] +\ .( Loader version 0.3+ required) cr +\ abort +\ [then] +\ [else] +\ .( Could not get loader version!) cr +\ abort +\ [then] +\ [then] [then] + +\ s" arch-i386" environment? [if] [if] +\ s" loader_version" environment? [if] +\ 8 < [if] +\ .( Loader version 0.8+ required) cr +\ abort +\ [then] +\ [else] +\ .( Could not get loader version!) cr +\ abort +\ [then] +\ [then] [then] include /boot/support.4th |