Initial commit of OpenSPARC T2 architecture model.
[OpenSPARC-T2-SAM] / obp / obp / fm / kernel / cold.fth
CommitLineData
920dae64
AT
1\ ========== Copyright Header Begin ==========================================
2\
3\ Hypervisor Software File: cold.fth
4\
5\ Copyright (c) 2006 Sun Microsystems, Inc. All Rights Reserved.
6\
7\ - Do no alter or remove copyright notices
8\
9\ - Redistribution and use of this software in source and binary forms, with
10\ or without modification, are permitted provided that the following
11\ conditions are met:
12\
13\ - Redistribution of source code must retain the above copyright notice,
14\ this list of conditions and the following disclaimer.
15\
16\ - Redistribution in binary form must reproduce the above copyright notice,
17\ this list of conditions and the following disclaimer in the
18\ documentation and/or other materials provided with the distribution.
19\
20\ Neither the name of Sun Microsystems, Inc. or the names of contributors
21\ may be used to endorse or promote products derived from this software
22\ without specific prior written permission.
23\
24\ This software is provided "AS IS," without a warranty of any kind.
25\ ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES,
26\ INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A
27\ PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN
28\ MICROSYSTEMS, INC. ("SUN") AND ITS LICENSORS SHALL NOT BE LIABLE FOR
29\ ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
30\ DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN
31\ OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR
32\ FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE
33\ DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY,
34\ ARISING OUT OF THE USE OF OR INABILITY TO USE THIS SOFTWARE, EVEN IF
35\ SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
36\
37\ You acknowledge that this software is not designed, licensed or
38\ intended for use in the design, construction, operation or maintenance of
39\ any nuclear facility.
40\
41\ ========== Copyright Header End ============================================
42\ cold.fth 2.6 94/09/11
43\ Copyright 1985-1994 Bradley Forthware
44
45\ Some hooks for multitasking
46\ Main task points to the initial task. This usage is currently not ROM-able
47\ since the user area address has to be later stored in the parameter field
48\ of main-task. It could be made ROM-able by allocating the user area
49\ at a fixed location and storing that address in main-task at compile time.
50
51defer pause \ for multitasking
52' noop is pause
53
54defer init-io ( -- )
55defer do-init ( -- )
56defer cold-hook ( -- )
57defer init-environment ( -- )
58
59[ifndef] run-time
60: (cold-hook (s -- )
61 [compile] [
62;
63
64' (cold-hook is cold-hook
65[then]
66
67: cold (s -- )
68 decimal
69 init-io \ Memory allocator and character I/O
70 do-init \ Kernel
71 ['] init-environment guarded \ Environmental dependencies
72 ['] cold-hook guarded \ Last-minute stuff
73
74 process-command-line
75
76 \ interactive? won't work because the fd hasn't been initialized yet
77 (interactive? if title then
78
79 quit
80;
81
82[ifndef] run-time
83headerless
84: single (s -- ) \ Turns off multitasking
85 ['] noop ['] pause (is
86;
87headers
88: warm (s -- ) single sp0 @ sp! quit ;
89[then]