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