aboutsummaryrefslogtreecommitdiffstats
path: root/roms/SLOF/lib/libbootmenu/bootmenu.code
blob: 2a55c09aa4b5ca4b198d6743f0475ef091f9fc1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*****************************************************************************
 * Boot menu: Glue code to Forth
 *
 * Copyright 2017 Red Hat, Inc.
 *
 * This program and the accompanying materials
 * are made available under the terms of the BSD License
 * which accompanies this distribution, and is available at
 * http://www.opensource.org/licenses/bsd-license.php
 *
 * Contributors:
 *     Thomas Huth, Red Hat Inc. - initial implementation
 *****************************************************************************/

#include "bootmenu.h"

// ( -- [str] len|0 )
PRIM(boot_X2d_menu)
	bootmenu();
MIRP