1280933Sdteske\ Copyright (c) 2003 Scott Long <scottl@FreeBSD.org>
2280933Sdteske\ Copyright (c) 2006-2015 Devin Teske <dteske@FreeBSD.org>
3280933Sdteske\ All rights reserved.
4280933Sdteske\ 
5280933Sdteske\ Redistribution and use in source and binary forms, with or without
6280933Sdteske\ modification, are permitted provided that the following conditions
7280933Sdteske\ are met:
8280933Sdteske\ 1. Redistributions of source code must retain the above copyright
9280933Sdteske\    notice, this list of conditions and the following disclaimer.
10280933Sdteske\ 2. Redistributions in binary form must reproduce the above copyright
11280933Sdteske\    notice, this list of conditions and the following disclaimer in the
12280933Sdteske\    documentation and/or other materials provided with the distribution.
13280933Sdteske\ 
14280933Sdteske\ THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15280933Sdteske\ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16280933Sdteske\ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17280933Sdteske\ ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18280933Sdteske\ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19280933Sdteske\ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20280933Sdteske\ OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21280933Sdteske\ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22280933Sdteske\ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23280933Sdteske\ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24280933Sdteske\ SUCH DAMAGE.
25280933Sdteske\ 
26280933Sdteske\ $FreeBSD: releng/11.0/sys/boot/forth/logo-fbsdbw.4th 280975 2015-04-02 01:48:12Z dteske $
27280933Sdteske
28280933Sdteske52 logoX ! 9 logoY ! \ Initialize logo placement defaults
29280933Sdteske
30280975Sdteske: logo+ ( x y c-addr/u -- x y' )
31280975Sdteske	2swap 2dup at-xy 2swap \ position the cursor
32280975Sdteske	type \ print to the screen
33280975Sdteske	1+ \ increase y for next time we're called
34280975Sdteske;
35280975Sdteske
36280933Sdteske: logo ( x y -- ) \ "FreeBSD" logo in B/W (13 rows x 21 columns)
37280933Sdteske
38280975Sdteske	s"  ______"               logo+
39280975Sdteske	s" |  ____| __ ___  ___ " logo+
40280975Sdteske	s" | |__ | '__/ _ \/ _ \" logo+
41280975Sdteske	s" |  __|| | |  __/  __/" logo+
42280975Sdteske	s" | |   | | |    |    |" logo+
43280975Sdteske	s" |_|   |_|  \___|\___|" logo+
44280975Sdteske	s"  ____   _____ _____"   logo+
45280975Sdteske	s" |  _ \ / ____|  __ \"  logo+
46280975Sdteske	s" | |_) | (___ | |  | |" logo+
47280975Sdteske	s" |  _ < \___ \| |  | |" logo+
48280975Sdteske	s" | |_) |____) | |__| |" logo+
49280975Sdteske	s" |     |      |      |" logo+
50280975Sdteske	s" |____/|_____/|_____/"  logo+
51280975Sdteske
52280975Sdteske	2drop
53280933Sdteske;
54