2003-08-25 23:28:32 +00:00
|
|
|
/*-
|
1998-10-12 21:16:26 +00:00
|
|
|
* Copyright (c) 1998 Robert Nordier
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms are freely
|
|
|
|
* permitted provided that the above copyright notice and this
|
|
|
|
* paragraph and the following disclaimer are duplicated in all
|
|
|
|
* such forms.
|
|
|
|
*
|
|
|
|
* This software is provided "AS IS" and without any express or
|
|
|
|
* implied warranties, including, without limitation, the implied
|
|
|
|
* warranties of merchantability and fitness for a particular
|
|
|
|
* purpose.
|
|
|
|
*/
|
|
|
|
|
2003-08-25 23:28:32 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
1998-10-12 21:16:26 +00:00
|
|
|
|
|
|
|
#include <sys/param.h>
|
2007-10-24 21:33:00 +00:00
|
|
|
#include <sys/gpt.h>
|
1998-10-12 21:16:26 +00:00
|
|
|
#include <sys/dirent.h>
|
2003-11-11 06:27:34 +00:00
|
|
|
#include <sys/reboot.h>
|
|
|
|
|
1998-10-12 21:16:26 +00:00
|
|
|
#include <machine/bootinfo.h>
|
2001-05-02 23:56:21 +00:00
|
|
|
#include <machine/elf.h>
|
1998-10-12 21:16:26 +00:00
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
#include <a.out.h>
|
|
|
|
|
|
|
|
#include <btxv86.h>
|
|
|
|
|
1998-10-15 20:04:21 +00:00
|
|
|
#include "lib.h"
|
|
|
|
|
2002-04-11 09:21:10 +00:00
|
|
|
#define IO_KEYBOARD 1
|
|
|
|
#define IO_SERIAL 2
|
|
|
|
|
|
|
|
#define SECOND 18 /* Circa that many ticks in a second. */
|
|
|
|
|
1998-10-12 21:16:26 +00:00
|
|
|
#define RBX_ASKNAME 0x0 /* -a */
|
|
|
|
#define RBX_SINGLE 0x1 /* -s */
|
2003-11-15 10:04:06 +00:00
|
|
|
/* 0x2 is reserved for log2(RB_NOSYNC). */
|
|
|
|
/* 0x3 is reserved for log2(RB_HALT). */
|
|
|
|
/* 0x4 is reserved for log2(RB_INITNAME). */
|
1998-10-12 21:16:26 +00:00
|
|
|
#define RBX_DFLTROOT 0x5 /* -r */
|
|
|
|
#define RBX_KDB 0x6 /* -d */
|
2003-11-15 10:04:06 +00:00
|
|
|
/* 0x7 is reserved for log2(RB_RDONLY). */
|
|
|
|
/* 0x8 is reserved for log2(RB_DUMP). */
|
|
|
|
/* 0x9 is reserved for log2(RB_MINIROOT). */
|
1998-10-12 21:16:26 +00:00
|
|
|
#define RBX_CONFIG 0xa /* -c */
|
|
|
|
#define RBX_VERBOSE 0xb /* -v */
|
1998-10-15 20:04:21 +00:00
|
|
|
#define RBX_SERIAL 0xc /* -h */
|
1998-10-12 21:16:26 +00:00
|
|
|
#define RBX_CDROM 0xd /* -C */
|
2003-11-15 10:04:06 +00:00
|
|
|
/* 0xe is reserved for log2(RB_POWEROFF). */
|
1998-10-12 21:16:26 +00:00
|
|
|
#define RBX_GDB 0xf /* -g */
|
2002-03-13 11:03:36 +00:00
|
|
|
#define RBX_MUTE 0x10 /* -m */
|
2003-11-15 10:04:06 +00:00
|
|
|
/* 0x11 is reserved for log2(RB_SELFTEST). */
|
|
|
|
/* 0x12 is reserved for boot programs. */
|
|
|
|
/* 0x13 is reserved for boot programs. */
|
|
|
|
#define RBX_PAUSE 0x14 /* -p */
|
2005-10-16 20:22:36 +00:00
|
|
|
#define RBX_QUIET 0x15 /* -q */
|
2005-10-16 19:49:44 +00:00
|
|
|
#define RBX_NOINTR 0x1c /* -n */
|
2003-11-15 10:04:06 +00:00
|
|
|
/* 0x1d is reserved for log2(RB_MULTIPLE) and is just misnamed here. */
|
1998-10-15 20:04:21 +00:00
|
|
|
#define RBX_DUAL 0x1d /* -D */
|
2003-11-15 10:04:06 +00:00
|
|
|
/* 0x1f is reserved for log2(RB_BOOTINFO). */
|
1998-10-15 20:04:21 +00:00
|
|
|
|
2003-01-13 21:28:24 +00:00
|
|
|
/* pass: -a, -s, -r, -d, -c, -v, -h, -C, -g, -m, -p, -D */
|
2005-11-03 07:35:36 +00:00
|
|
|
#define RBX_MASK (OPT_SET(RBX_ASKNAME) | OPT_SET(RBX_SINGLE) | \
|
|
|
|
OPT_SET(RBX_DFLTROOT) | OPT_SET(RBX_KDB ) | \
|
|
|
|
OPT_SET(RBX_CONFIG) | OPT_SET(RBX_VERBOSE) | \
|
|
|
|
OPT_SET(RBX_SERIAL) | OPT_SET(RBX_CDROM) | \
|
|
|
|
OPT_SET(RBX_GDB ) | OPT_SET(RBX_MUTE) | \
|
|
|
|
OPT_SET(RBX_PAUSE) | OPT_SET(RBX_DUAL))
|
1998-10-12 21:16:26 +00:00
|
|
|
|
|
|
|
#define PATH_CONFIG "/boot.config"
|
|
|
|
#define PATH_BOOT3 "/boot/loader"
|
2005-08-06 00:33:42 +00:00
|
|
|
#define PATH_KERNEL "/boot/kernel/kernel"
|
1998-10-12 21:16:26 +00:00
|
|
|
|
1999-01-10 13:29:52 +00:00
|
|
|
#define ARGS 0x900
|
2006-10-26 19:41:02 +00:00
|
|
|
#define NOPT 14
|
2002-12-17 21:10:34 +00:00
|
|
|
#define NDEV 3
|
1998-10-12 21:16:26 +00:00
|
|
|
#define MEM_BASE 0x12
|
|
|
|
#define MEM_EXT 0x15
|
|
|
|
#define V86_CY(x) ((x) & 1)
|
|
|
|
#define V86_ZR(x) ((x) & 0x40)
|
|
|
|
|
1998-10-13 17:41:06 +00:00
|
|
|
#define DRV_HARD 0x80
|
|
|
|
#define DRV_MASK 0x7f
|
|
|
|
|
2000-02-09 19:23:46 +00:00
|
|
|
#define TYPE_AD 0
|
2002-12-17 21:10:34 +00:00
|
|
|
#define TYPE_DA 1
|
2002-06-21 06:18:05 +00:00
|
|
|
#define TYPE_MAXHARD TYPE_DA
|
2002-12-17 21:10:34 +00:00
|
|
|
#define TYPE_FD 2
|
1998-10-13 17:41:06 +00:00
|
|
|
|
2005-11-03 07:35:36 +00:00
|
|
|
#define OPT_SET(opt) (1 << (opt))
|
|
|
|
#define OPT_CHECK(opt) ((opts) & OPT_SET(opt))
|
2005-10-16 20:22:36 +00:00
|
|
|
|
1998-10-12 21:16:26 +00:00
|
|
|
extern uint32_t _end;
|
|
|
|
|
2007-10-24 21:33:00 +00:00
|
|
|
static const uuid_t freebsd_ufs_uuid = GPT_ENT_TYPE_FREEBSD_UFS;
|
2006-10-26 19:41:02 +00:00
|
|
|
static const char optstr[NOPT] = "DhaCcdgmnpqrsv"; /* Also 'P', 'S' */
|
1998-10-12 21:16:26 +00:00
|
|
|
static const unsigned char flags[NOPT] = {
|
1998-10-15 20:04:21 +00:00
|
|
|
RBX_DUAL,
|
|
|
|
RBX_SERIAL,
|
1998-10-12 21:16:26 +00:00
|
|
|
RBX_ASKNAME,
|
|
|
|
RBX_CDROM,
|
2006-10-26 19:41:02 +00:00
|
|
|
RBX_CONFIG,
|
|
|
|
RBX_KDB,
|
1998-10-12 21:16:26 +00:00
|
|
|
RBX_GDB,
|
2002-03-13 11:03:36 +00:00
|
|
|
RBX_MUTE,
|
2002-03-23 19:40:27 +00:00
|
|
|
RBX_NOINTR,
|
2002-03-13 11:03:36 +00:00
|
|
|
RBX_PAUSE,
|
2005-10-16 20:22:36 +00:00
|
|
|
RBX_QUIET,
|
1998-10-12 21:16:26 +00:00
|
|
|
RBX_DFLTROOT,
|
|
|
|
RBX_SINGLE,
|
|
|
|
RBX_VERBOSE
|
|
|
|
};
|
|
|
|
|
2002-12-17 21:10:34 +00:00
|
|
|
static const char *const dev_nm[NDEV] = {"ad", "da", "fd"};
|
|
|
|
static const unsigned char dev_maj[NDEV] = {30, 4, 2};
|
1998-10-12 21:16:26 +00:00
|
|
|
|
|
|
|
static struct dsk {
|
|
|
|
unsigned drive;
|
|
|
|
unsigned type;
|
|
|
|
unsigned unit;
|
2007-10-24 21:33:00 +00:00
|
|
|
int part;
|
|
|
|
daddr_t start;
|
1998-10-13 17:41:06 +00:00
|
|
|
int init;
|
1998-10-12 21:16:26 +00:00
|
|
|
} dsk;
|
2008-02-28 17:08:05 +00:00
|
|
|
static char cmd[512], cmddup[512];
|
1999-11-14 22:17:06 +00:00
|
|
|
static char kname[1024];
|
2005-10-16 19:49:44 +00:00
|
|
|
static uint32_t opts;
|
2005-08-18 00:42:45 +00:00
|
|
|
static int comspeed = SIOSPD;
|
1998-10-12 21:16:26 +00:00
|
|
|
static struct bootinfo bootinfo;
|
2002-04-11 09:21:10 +00:00
|
|
|
static uint8_t ioctrl = IO_KEYBOARD;
|
1998-10-12 21:16:26 +00:00
|
|
|
|
|
|
|
void exit(int);
|
2007-10-24 21:33:00 +00:00
|
|
|
static int bcmp(const void *, const void *, size_t);
|
2002-12-17 21:10:34 +00:00
|
|
|
static void load(void);
|
|
|
|
static int parse(void);
|
1998-10-13 23:00:47 +00:00
|
|
|
static int xfsread(ino_t, void *, size_t);
|
2007-10-24 21:33:00 +00:00
|
|
|
static int dskread(void *, daddr_t, unsigned);
|
2002-10-08 15:48:43 +00:00
|
|
|
static void printf(const char *,...);
|
|
|
|
static void putchar(int);
|
2007-10-24 21:33:00 +00:00
|
|
|
static void memcpy(void *, const void *, int);
|
2002-12-17 21:10:34 +00:00
|
|
|
static uint32_t memsize(void);
|
2007-10-24 21:33:00 +00:00
|
|
|
static int drvread(void *, daddr_t, unsigned);
|
1998-10-12 21:16:26 +00:00
|
|
|
static int keyhit(unsigned);
|
1998-10-15 20:04:21 +00:00
|
|
|
static int xputc(int);
|
|
|
|
static int xgetc(int);
|
|
|
|
static int getc(int);
|
1998-10-12 21:16:26 +00:00
|
|
|
|
2004-03-12 21:45:33 +00:00
|
|
|
static void
|
2004-07-30 00:33:09 +00:00
|
|
|
memcpy(void *dst, const void *src, int len)
|
2004-03-12 21:45:33 +00:00
|
|
|
{
|
2004-07-30 00:33:09 +00:00
|
|
|
const char *s = src;
|
|
|
|
char *d = dst;
|
|
|
|
|
2004-03-12 21:45:33 +00:00
|
|
|
while (len--)
|
2004-07-30 00:33:09 +00:00
|
|
|
*d++ = *s++;
|
2004-03-12 21:45:33 +00:00
|
|
|
}
|
2000-07-06 01:51:27 +00:00
|
|
|
|
|
|
|
static inline int
|
|
|
|
strcmp(const char *s1, const char *s2)
|
|
|
|
{
|
|
|
|
for (; *s1 == *s2 && *s1; s1++, s2++);
|
2002-12-20 05:49:40 +00:00
|
|
|
return (unsigned char)*s1 - (unsigned char)*s2;
|
2000-07-06 01:51:27 +00:00
|
|
|
}
|
|
|
|
|
2002-06-05 11:10:38 +00:00
|
|
|
#include "ufsread.c"
|
2000-07-06 01:51:27 +00:00
|
|
|
|
2005-10-16 20:22:36 +00:00
|
|
|
static inline int
|
2002-06-21 06:18:05 +00:00
|
|
|
xfsread(ino_t inode, void *buf, size_t nbyte)
|
2000-07-06 01:51:27 +00:00
|
|
|
{
|
2002-12-15 02:15:19 +00:00
|
|
|
if ((size_t)fsread(inode, buf, nbyte) != nbyte) {
|
2002-06-21 06:18:05 +00:00
|
|
|
printf("Invalid %s\n", "format");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
2000-07-06 01:51:27 +00:00
|
|
|
}
|
|
|
|
|
2002-12-17 21:10:34 +00:00
|
|
|
static inline uint32_t
|
|
|
|
memsize(void)
|
|
|
|
{
|
|
|
|
v86.addr = MEM_EXT;
|
|
|
|
v86.eax = 0x8800;
|
|
|
|
v86int();
|
|
|
|
return v86.eax;
|
|
|
|
}
|
|
|
|
|
2000-07-06 01:51:27 +00:00
|
|
|
static inline void
|
2002-12-17 21:10:34 +00:00
|
|
|
getstr(void)
|
2000-07-06 01:51:27 +00:00
|
|
|
{
|
|
|
|
char *s;
|
|
|
|
int c;
|
|
|
|
|
2002-12-17 21:10:34 +00:00
|
|
|
s = cmd;
|
2002-06-21 06:18:05 +00:00
|
|
|
for (;;) {
|
|
|
|
switch (c = xgetc(0)) {
|
2000-07-06 01:51:27 +00:00
|
|
|
case 0:
|
2002-12-17 22:00:06 +00:00
|
|
|
break;
|
2000-07-06 01:51:27 +00:00
|
|
|
case '\177':
|
2002-06-21 06:18:05 +00:00
|
|
|
case '\b':
|
2002-12-17 21:10:34 +00:00
|
|
|
if (s > cmd) {
|
2000-07-06 01:51:27 +00:00
|
|
|
s--;
|
2002-12-17 21:10:34 +00:00
|
|
|
printf("\b \b");
|
|
|
|
}
|
2002-12-17 22:00:06 +00:00
|
|
|
break;
|
2000-07-06 01:51:27 +00:00
|
|
|
case '\n':
|
2002-06-21 06:18:05 +00:00
|
|
|
case '\r':
|
2000-07-06 01:51:27 +00:00
|
|
|
*s = 0;
|
2002-06-21 06:18:05 +00:00
|
|
|
return;
|
2000-07-06 01:51:27 +00:00
|
|
|
default:
|
2002-12-17 21:10:34 +00:00
|
|
|
if (s - cmd < sizeof(cmd) - 1)
|
2000-07-06 01:51:27 +00:00
|
|
|
*s++ = c;
|
2002-12-17 22:00:06 +00:00
|
|
|
putchar(c);
|
2000-07-06 01:51:27 +00:00
|
|
|
}
|
2002-06-21 06:18:05 +00:00
|
|
|
}
|
2000-07-06 01:51:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
putc(int c)
|
|
|
|
{
|
|
|
|
v86.addr = 0x10;
|
|
|
|
v86.eax = 0xe00 | (c & 0xff);
|
|
|
|
v86.ebx = 0x7;
|
|
|
|
v86int();
|
|
|
|
}
|
|
|
|
|
1998-10-12 21:16:26 +00:00
|
|
|
int
|
|
|
|
main(void)
|
|
|
|
{
|
2002-12-14 19:09:37 +00:00
|
|
|
int autoboot;
|
2002-06-21 06:18:05 +00:00
|
|
|
ino_t ino;
|
1998-10-12 21:16:26 +00:00
|
|
|
|
2002-10-08 10:15:42 +00:00
|
|
|
dmadat = (void *)(roundup2(__base + (int32_t)&_end, 0x10000) - __base);
|
1998-10-13 23:00:47 +00:00
|
|
|
v86.ctl = V86_FLAGS;
|
1998-10-12 21:16:26 +00:00
|
|
|
dsk.drive = *(uint8_t *)PTOV(ARGS);
|
2000-02-09 19:23:46 +00:00
|
|
|
dsk.type = dsk.drive & DRV_HARD ? TYPE_AD : TYPE_FD;
|
1998-10-13 17:41:06 +00:00
|
|
|
dsk.unit = dsk.drive & DRV_MASK;
|
2007-10-24 21:33:00 +00:00
|
|
|
dsk.part = -1;
|
1998-10-12 21:16:26 +00:00
|
|
|
bootinfo.bi_version = BOOTINFO_VERSION;
|
|
|
|
bootinfo.bi_size = sizeof(bootinfo);
|
2002-10-01 19:31:09 +00:00
|
|
|
bootinfo.bi_basemem = 0; /* XXX will be filled by loader or kernel */
|
2002-12-17 21:10:34 +00:00
|
|
|
bootinfo.bi_extmem = memsize();
|
1998-10-12 21:16:26 +00:00
|
|
|
bootinfo.bi_memsizes_valid++;
|
2002-04-11 09:21:10 +00:00
|
|
|
|
|
|
|
/* Process configuration file */
|
|
|
|
|
|
|
|
autoboot = 1;
|
2002-06-21 06:18:05 +00:00
|
|
|
|
|
|
|
if ((ino = lookup(PATH_CONFIG)))
|
|
|
|
fsread(ino, cmd, sizeof(cmd));
|
|
|
|
|
1998-10-17 09:16:01 +00:00
|
|
|
if (*cmd) {
|
2008-02-28 17:08:05 +00:00
|
|
|
memcpy(cmddup, cmd, sizeof(cmd));
|
2002-12-17 21:10:34 +00:00
|
|
|
if (parse())
|
1998-10-17 09:16:01 +00:00
|
|
|
autoboot = 0;
|
2005-10-16 20:22:36 +00:00
|
|
|
if (!OPT_CHECK(RBX_QUIET))
|
2008-02-28 17:08:05 +00:00
|
|
|
printf("%s: %s", PATH_CONFIG, cmddup);
|
2002-04-11 09:21:10 +00:00
|
|
|
/* Do not process this command twice */
|
1998-11-08 18:37:28 +00:00
|
|
|
*cmd = 0;
|
1998-10-17 09:16:01 +00:00
|
|
|
}
|
2002-04-11 09:21:10 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Try to exec stage 3 boot loader. If interrupted by a keypress,
|
|
|
|
* or in case of failure, try to load a kernel directly instead.
|
|
|
|
*/
|
|
|
|
|
1998-10-17 09:16:01 +00:00
|
|
|
if (autoboot && !*kname) {
|
2002-04-11 09:21:10 +00:00
|
|
|
memcpy(kname, PATH_BOOT3, sizeof(PATH_BOOT3));
|
|
|
|
if (!keyhit(3*SECOND)) {
|
2002-12-17 21:10:34 +00:00
|
|
|
load();
|
1998-10-12 21:16:26 +00:00
|
|
|
memcpy(kname, PATH_KERNEL, sizeof(PATH_KERNEL));
|
2002-04-11 09:21:10 +00:00
|
|
|
}
|
1998-10-12 21:16:26 +00:00
|
|
|
}
|
2002-04-11 09:21:10 +00:00
|
|
|
|
|
|
|
/* Present the user with the boot2 prompt. */
|
|
|
|
|
1998-10-12 21:16:26 +00:00
|
|
|
for (;;) {
|
2005-10-16 20:22:36 +00:00
|
|
|
if (!autoboot || !OPT_CHECK(RBX_QUIET))
|
|
|
|
printf("\nFreeBSD/i386 boot\n"
|
2007-10-24 21:33:00 +00:00
|
|
|
"Default: %u:%s(%up%u)%s\n"
|
2005-10-16 20:22:36 +00:00
|
|
|
"boot: ",
|
|
|
|
dsk.drive & DRV_MASK, dev_nm[dsk.type], dsk.unit,
|
2007-10-24 21:33:00 +00:00
|
|
|
dsk.part, kname);
|
2002-04-11 09:21:10 +00:00
|
|
|
if (ioctrl & IO_SERIAL)
|
1998-10-15 20:04:21 +00:00
|
|
|
sio_flush();
|
2002-04-11 09:21:10 +00:00
|
|
|
if (!autoboot || keyhit(5*SECOND))
|
2002-12-17 21:10:34 +00:00
|
|
|
getstr();
|
2005-10-16 20:22:36 +00:00
|
|
|
else if (!autoboot || !OPT_CHECK(RBX_QUIET))
|
1998-10-17 09:50:09 +00:00
|
|
|
putchar('\n');
|
1999-01-11 11:36:03 +00:00
|
|
|
autoboot = 0;
|
2002-12-17 21:10:34 +00:00
|
|
|
if (parse())
|
2002-12-15 02:15:19 +00:00
|
|
|
putchar('\a');
|
1998-10-12 21:16:26 +00:00
|
|
|
else
|
2002-12-17 21:10:34 +00:00
|
|
|
load();
|
1998-10-12 21:16:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-07-06 01:51:27 +00:00
|
|
|
/* XXX - Needed for btxld to link the boot2 binary; do not remove. */
|
1998-10-12 21:16:26 +00:00
|
|
|
void
|
|
|
|
exit(int x)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2002-12-17 21:10:34 +00:00
|
|
|
load(void)
|
1998-10-12 21:16:26 +00:00
|
|
|
{
|
2005-10-16 19:49:44 +00:00
|
|
|
union {
|
1998-10-12 21:16:26 +00:00
|
|
|
struct exec ex;
|
|
|
|
Elf32_Ehdr eh;
|
|
|
|
} hdr;
|
2005-10-16 20:22:36 +00:00
|
|
|
static Elf32_Phdr ep[2];
|
|
|
|
static Elf32_Shdr es[2];
|
1998-10-12 21:16:26 +00:00
|
|
|
caddr_t p;
|
|
|
|
ino_t ino;
|
|
|
|
uint32_t addr, x;
|
|
|
|
int fmt, i, j;
|
|
|
|
|
2002-12-17 21:10:34 +00:00
|
|
|
if (!(ino = lookup(kname))) {
|
1999-11-14 22:17:06 +00:00
|
|
|
if (!ls)
|
2002-12-17 21:10:34 +00:00
|
|
|
printf("No %s\n", kname);
|
1998-10-12 21:16:26 +00:00
|
|
|
return;
|
|
|
|
}
|
1998-10-13 23:00:47 +00:00
|
|
|
if (xfsread(ino, &hdr, sizeof(hdr)))
|
1998-10-12 21:16:26 +00:00
|
|
|
return;
|
|
|
|
if (N_GETMAGIC(hdr.ex) == ZMAGIC)
|
|
|
|
fmt = 0;
|
|
|
|
else if (IS_ELF(hdr.eh))
|
|
|
|
fmt = 1;
|
|
|
|
else {
|
|
|
|
printf("Invalid %s\n", "format");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (fmt == 0) {
|
2006-11-02 17:28:38 +00:00
|
|
|
addr = hdr.ex.a_entry & 0xffffff;
|
1998-10-12 21:16:26 +00:00
|
|
|
p = PTOV(addr);
|
|
|
|
fs_off = PAGE_SIZE;
|
1998-10-13 23:00:47 +00:00
|
|
|
if (xfsread(ino, p, hdr.ex.a_text))
|
1998-10-12 21:16:26 +00:00
|
|
|
return;
|
|
|
|
p += roundup2(hdr.ex.a_text, PAGE_SIZE);
|
1998-10-13 23:00:47 +00:00
|
|
|
if (xfsread(ino, p, hdr.ex.a_data))
|
1998-10-12 21:16:26 +00:00
|
|
|
return;
|
1998-11-08 18:29:29 +00:00
|
|
|
p += hdr.ex.a_data + roundup2(hdr.ex.a_bss, PAGE_SIZE);
|
1998-10-12 21:16:26 +00:00
|
|
|
bootinfo.bi_symtab = VTOP(p);
|
2002-12-15 02:15:19 +00:00
|
|
|
memcpy(p, &hdr.ex.a_syms, sizeof(hdr.ex.a_syms));
|
1998-10-12 21:16:26 +00:00
|
|
|
p += sizeof(hdr.ex.a_syms);
|
|
|
|
if (hdr.ex.a_syms) {
|
1998-10-13 23:00:47 +00:00
|
|
|
if (xfsread(ino, p, hdr.ex.a_syms))
|
1998-10-12 21:16:26 +00:00
|
|
|
return;
|
|
|
|
p += hdr.ex.a_syms;
|
1998-10-13 23:00:47 +00:00
|
|
|
if (xfsread(ino, p, sizeof(int)))
|
1998-10-12 21:16:26 +00:00
|
|
|
return;
|
|
|
|
x = *(uint32_t *)p;
|
|
|
|
p += sizeof(int);
|
|
|
|
x -= sizeof(int);
|
1998-10-13 23:00:47 +00:00
|
|
|
if (xfsread(ino, p, x))
|
1998-10-12 21:16:26 +00:00
|
|
|
return;
|
|
|
|
p += x;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
fs_off = hdr.eh.e_phoff;
|
1999-06-19 20:50:38 +00:00
|
|
|
for (j = i = 0; i < hdr.eh.e_phnum && j < 2; i++) {
|
1998-10-13 23:00:47 +00:00
|
|
|
if (xfsread(ino, ep + j, sizeof(ep[0])))
|
1998-10-12 21:16:26 +00:00
|
|
|
return;
|
|
|
|
if (ep[j].p_type == PT_LOAD)
|
|
|
|
j++;
|
|
|
|
}
|
|
|
|
for (i = 0; i < 2; i++) {
|
2006-11-02 17:28:38 +00:00
|
|
|
p = PTOV(ep[i].p_paddr & 0xffffff);
|
1998-10-12 21:16:26 +00:00
|
|
|
fs_off = ep[i].p_offset;
|
1998-10-13 23:00:47 +00:00
|
|
|
if (xfsread(ino, p, ep[i].p_filesz))
|
1998-10-12 21:16:26 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
p += roundup2(ep[1].p_memsz, PAGE_SIZE);
|
|
|
|
bootinfo.bi_symtab = VTOP(p);
|
|
|
|
if (hdr.eh.e_shnum == hdr.eh.e_shstrndx + 3) {
|
|
|
|
fs_off = hdr.eh.e_shoff + sizeof(es[0]) *
|
|
|
|
(hdr.eh.e_shstrndx + 1);
|
1998-10-13 23:00:47 +00:00
|
|
|
if (xfsread(ino, &es, sizeof(es)))
|
1998-10-12 21:16:26 +00:00
|
|
|
return;
|
|
|
|
for (i = 0; i < 2; i++) {
|
2002-12-15 02:15:19 +00:00
|
|
|
memcpy(p, &es[i].sh_size, sizeof(es[i].sh_size));
|
1998-10-12 21:16:26 +00:00
|
|
|
p += sizeof(es[i].sh_size);
|
|
|
|
fs_off = es[i].sh_offset;
|
1998-10-13 23:00:47 +00:00
|
|
|
if (xfsread(ino, p, es[i].sh_size))
|
1998-10-12 21:16:26 +00:00
|
|
|
return;
|
|
|
|
p += es[i].sh_size;
|
|
|
|
}
|
|
|
|
}
|
2006-11-02 17:28:38 +00:00
|
|
|
addr = hdr.eh.e_entry & 0xffffff;
|
1998-10-12 21:16:26 +00:00
|
|
|
}
|
|
|
|
bootinfo.bi_esymtab = VTOP(p);
|
2002-12-17 21:10:34 +00:00
|
|
|
bootinfo.bi_kernelname = VTOP(kname);
|
1999-01-24 00:10:10 +00:00
|
|
|
bootinfo.bi_bios_dev = dsk.drive;
|
2005-10-16 19:49:44 +00:00
|
|
|
__exec((caddr_t)addr, RB_BOOTINFO | (opts & RBX_MASK),
|
2007-10-24 21:33:00 +00:00
|
|
|
MAKEBOOTDEV(dev_maj[dsk.type], dsk.part + 1, dsk.unit, 0xff),
|
1998-10-13 17:41:06 +00:00
|
|
|
0, 0, 0, VTOP(&bootinfo));
|
1998-10-12 21:16:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2007-10-24 21:33:00 +00:00
|
|
|
parse(void)
|
1998-10-12 21:16:26 +00:00
|
|
|
{
|
2002-12-17 21:10:34 +00:00
|
|
|
char *arg = cmd;
|
2005-08-18 00:42:45 +00:00
|
|
|
char *ep, *p, *q;
|
|
|
|
const char *cp;
|
2002-12-17 21:10:34 +00:00
|
|
|
unsigned int drv;
|
2005-08-18 00:42:45 +00:00
|
|
|
int c, i, j;
|
1998-10-12 21:16:26 +00:00
|
|
|
|
|
|
|
while ((c = *arg++)) {
|
2000-06-13 13:07:53 +00:00
|
|
|
if (c == ' ' || c == '\t' || c == '\n')
|
1998-10-12 21:16:26 +00:00
|
|
|
continue;
|
2000-06-13 13:07:53 +00:00
|
|
|
for (p = arg; *p && *p != '\n' && *p != ' ' && *p != '\t'; p++);
|
2005-08-18 00:42:45 +00:00
|
|
|
ep = p;
|
1998-10-12 21:16:26 +00:00
|
|
|
if (*p)
|
|
|
|
*p++ = 0;
|
1998-10-15 20:04:21 +00:00
|
|
|
if (c == '-') {
|
1998-10-12 21:16:26 +00:00
|
|
|
while ((c = *arg++)) {
|
2005-08-18 00:42:45 +00:00
|
|
|
if (c == 'P') {
|
|
|
|
if (*(uint8_t *)PTOV(0x496) & 0x10) {
|
|
|
|
cp = "yes";
|
|
|
|
} else {
|
2005-11-03 07:35:36 +00:00
|
|
|
opts |= OPT_SET(RBX_DUAL) | OPT_SET(RBX_SERIAL);
|
2005-08-18 00:42:45 +00:00
|
|
|
cp = "no";
|
|
|
|
}
|
|
|
|
printf("Keyboard: %s\n", cp);
|
|
|
|
continue;
|
|
|
|
} else if (c == 'S') {
|
|
|
|
j = 0;
|
|
|
|
while ((unsigned int)(i = *arg++ - '0') <= 9)
|
|
|
|
j = j * 10 + i;
|
|
|
|
if (j > 0 && i == -'0') {
|
|
|
|
comspeed = j;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* Fall through to error below ('S' not in optstr[]). */
|
|
|
|
}
|
1998-10-12 21:16:26 +00:00
|
|
|
for (i = 0; c != optstr[i]; i++)
|
|
|
|
if (i == NOPT - 1)
|
|
|
|
return -1;
|
2005-11-03 07:35:36 +00:00
|
|
|
opts ^= OPT_SET(flags[i]);
|
1998-10-12 21:16:26 +00:00
|
|
|
}
|
2005-11-03 07:35:36 +00:00
|
|
|
ioctrl = OPT_CHECK(RBX_DUAL) ? (IO_SERIAL|IO_KEYBOARD) :
|
|
|
|
OPT_CHECK(RBX_SERIAL) ? IO_SERIAL : IO_KEYBOARD;
|
2002-04-11 09:21:10 +00:00
|
|
|
if (ioctrl & IO_SERIAL)
|
2005-08-18 00:42:45 +00:00
|
|
|
sio_init(115200 / comspeed);
|
1998-10-15 20:04:21 +00:00
|
|
|
} else {
|
1998-10-12 21:16:26 +00:00
|
|
|
for (q = arg--; *q && *q != '('; q++);
|
|
|
|
if (*q) {
|
|
|
|
drv = -1;
|
|
|
|
if (arg[1] == ':') {
|
|
|
|
drv = *arg - '0';
|
2002-12-17 21:10:34 +00:00
|
|
|
if (drv > 9)
|
|
|
|
return (-1);
|
1998-10-12 21:16:26 +00:00
|
|
|
arg += 2;
|
|
|
|
}
|
|
|
|
if (q - arg != 2)
|
|
|
|
return -1;
|
|
|
|
for (i = 0; arg[0] != dev_nm[i][0] ||
|
1998-10-13 21:35:42 +00:00
|
|
|
arg[1] != dev_nm[i][1]; i++)
|
1998-10-12 21:16:26 +00:00
|
|
|
if (i == NDEV - 1)
|
|
|
|
return -1;
|
|
|
|
dsk.type = i;
|
|
|
|
arg += 3;
|
|
|
|
dsk.unit = *arg - '0';
|
2002-12-17 21:10:34 +00:00
|
|
|
if (arg[1] != ',' || dsk.unit > 9)
|
|
|
|
return -1;
|
1998-10-12 21:16:26 +00:00
|
|
|
arg += 2;
|
2007-10-24 21:33:00 +00:00
|
|
|
dsk.part = -1;
|
1998-10-12 21:16:26 +00:00
|
|
|
if (arg[1] == ',') {
|
2007-10-24 21:33:00 +00:00
|
|
|
dsk.part = *arg - '0';
|
|
|
|
if (dsk.part < 1 || dsk.part > 9)
|
1998-10-12 21:16:26 +00:00
|
|
|
return -1;
|
|
|
|
arg += 2;
|
|
|
|
}
|
2007-10-24 21:33:00 +00:00
|
|
|
if (arg[0] != ')')
|
1998-10-12 21:16:26 +00:00
|
|
|
return -1;
|
2007-10-24 21:33:00 +00:00
|
|
|
arg++;
|
1998-10-12 21:16:26 +00:00
|
|
|
if (drv == -1)
|
1998-10-13 17:41:06 +00:00
|
|
|
drv = dsk.unit;
|
2002-06-21 06:18:05 +00:00
|
|
|
dsk.drive = (dsk.type <= TYPE_MAXHARD
|
|
|
|
? DRV_HARD : 0) + drv;
|
2002-06-05 11:10:38 +00:00
|
|
|
dsk_meta = 0;
|
1998-10-12 21:16:26 +00:00
|
|
|
}
|
2005-08-18 00:42:45 +00:00
|
|
|
if ((i = ep - arg)) {
|
2002-12-15 02:15:19 +00:00
|
|
|
if ((size_t)i >= sizeof(kname))
|
1998-10-12 21:16:26 +00:00
|
|
|
return -1;
|
|
|
|
memcpy(kname, arg, i + 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
arg = p;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2007-10-24 21:33:00 +00:00
|
|
|
dskread(void *buf, daddr_t lba, unsigned nblk)
|
1998-10-12 21:16:26 +00:00
|
|
|
{
|
2007-10-24 21:33:00 +00:00
|
|
|
struct gpt_hdr hdr;
|
|
|
|
struct gpt_ent *ent;
|
2002-01-17 22:39:19 +00:00
|
|
|
char *sec;
|
2007-10-24 21:33:00 +00:00
|
|
|
daddr_t slba, elba;
|
|
|
|
int part, entries_per_sec;
|
1998-10-12 21:16:26 +00:00
|
|
|
|
2002-06-05 11:10:38 +00:00
|
|
|
if (!dsk_meta) {
|
2007-10-24 21:33:00 +00:00
|
|
|
/* Read and verify GPT. */
|
2002-01-17 22:39:19 +00:00
|
|
|
sec = dmadat->secbuf;
|
1998-10-13 17:41:06 +00:00
|
|
|
dsk.start = 0;
|
2007-10-24 21:33:00 +00:00
|
|
|
if (drvread(sec, 1, 1))
|
1998-10-13 21:35:42 +00:00
|
|
|
return -1;
|
2007-10-24 21:33:00 +00:00
|
|
|
memcpy(&hdr, sec, sizeof(hdr));
|
|
|
|
if (bcmp(hdr.hdr_sig, GPT_HDR_SIG, sizeof(hdr.hdr_sig)) != 0 ||
|
|
|
|
hdr.hdr_lba_self != 1 || hdr.hdr_revision < 0x00010000 ||
|
|
|
|
hdr.hdr_entsz < sizeof(*ent) || DEV_BSIZE % hdr.hdr_entsz != 0) {
|
|
|
|
printf("Invalid GPT header\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* XXX: CRC check? */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If the partition isn't specified, then search for the first UFS
|
|
|
|
* partition and hope it is /. Perhaps we should be using an OS
|
|
|
|
* flag in the GPT entry to mark / partitions.
|
|
|
|
*
|
|
|
|
* If the partition is specified, then figure out the LBA for the
|
|
|
|
* sector containing that partition index and load it.
|
|
|
|
*/
|
|
|
|
entries_per_sec = DEV_BSIZE / hdr.hdr_entsz;
|
|
|
|
if (dsk.part == -1) {
|
|
|
|
slba = hdr.hdr_lba_table;
|
|
|
|
elba = slba + hdr.hdr_entries / entries_per_sec;
|
|
|
|
while (slba < elba && dsk.part == -1) {
|
|
|
|
if (drvread(sec, slba, 1))
|
|
|
|
return -1;
|
|
|
|
for (part = 0; part < entries_per_sec; part++) {
|
|
|
|
ent = (struct gpt_ent *)(sec + part * hdr.hdr_entsz);
|
|
|
|
if (bcmp(&ent->ent_type, &freebsd_ufs_uuid,
|
|
|
|
sizeof(uuid_t)) == 0) {
|
|
|
|
dsk.part = (slba - hdr.hdr_lba_table) *
|
|
|
|
entries_per_sec + part + 1;
|
|
|
|
dsk.start = ent->ent_lba_start;
|
1998-10-13 21:35:42 +00:00
|
|
|
break;
|
2007-10-24 21:33:00 +00:00
|
|
|
}
|
1998-10-13 21:35:42 +00:00
|
|
|
}
|
2007-10-24 21:33:00 +00:00
|
|
|
slba++;
|
1998-10-12 21:16:26 +00:00
|
|
|
}
|
2007-10-24 21:33:00 +00:00
|
|
|
if (dsk.part == -1) {
|
|
|
|
printf("No UFS partition was found\n");
|
1998-10-13 21:35:42 +00:00
|
|
|
return -1;
|
1998-10-13 17:41:06 +00:00
|
|
|
}
|
|
|
|
} else {
|
2007-10-24 21:33:00 +00:00
|
|
|
if (dsk.part > hdr.hdr_entries) {
|
|
|
|
printf("Invalid partition index\n");
|
|
|
|
return -1;
|
1998-10-12 21:16:26 +00:00
|
|
|
}
|
2007-10-24 21:33:00 +00:00
|
|
|
slba = hdr.hdr_lba_table + (dsk.part - 1) / entries_per_sec;
|
|
|
|
if (drvread(sec, slba, 1))
|
|
|
|
return -1;
|
|
|
|
part = (dsk.part - 1) % entries_per_sec;
|
|
|
|
ent = (struct gpt_ent *)(sec + part * hdr.hdr_entsz);
|
|
|
|
if (bcmp(&ent->ent_type, &freebsd_ufs_uuid, sizeof(uuid_t)) != 0) {
|
|
|
|
printf("Specified partition is not UFS\n");
|
1998-10-12 21:16:26 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2007-10-24 21:33:00 +00:00
|
|
|
dsk.start = ent->ent_lba_start;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* XXX: No way to detect SCSI vs. ATA currently.
|
|
|
|
*/
|
|
|
|
#if 0
|
|
|
|
if (!dsk.init) {
|
|
|
|
if (d->d_type == DTYPE_SCSI)
|
|
|
|
dsk.type = TYPE_DA;
|
|
|
|
dsk.init++;
|
1998-10-12 21:16:26 +00:00
|
|
|
}
|
2007-10-24 21:33:00 +00:00
|
|
|
#endif
|
1998-10-12 21:16:26 +00:00
|
|
|
}
|
1998-10-13 17:41:06 +00:00
|
|
|
return drvread(buf, dsk.start + lba, nblk);
|
1998-10-12 21:16:26 +00:00
|
|
|
}
|
|
|
|
|
2002-10-08 15:48:43 +00:00
|
|
|
static void
|
1998-10-12 21:16:26 +00:00
|
|
|
printf(const char *fmt,...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
char buf[10];
|
|
|
|
char *s;
|
2002-12-17 21:10:34 +00:00
|
|
|
unsigned u;
|
1998-10-12 21:16:26 +00:00
|
|
|
int c;
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
|
|
|
while ((c = *fmt++)) {
|
|
|
|
if (c == '%') {
|
|
|
|
c = *fmt++;
|
|
|
|
switch (c) {
|
|
|
|
case 'c':
|
|
|
|
putchar(va_arg(ap, int));
|
|
|
|
continue;
|
|
|
|
case 's':
|
|
|
|
for (s = va_arg(ap, char *); *s; s++)
|
|
|
|
putchar(*s);
|
|
|
|
continue;
|
|
|
|
case 'u':
|
|
|
|
u = va_arg(ap, unsigned);
|
|
|
|
s = buf;
|
|
|
|
do
|
2002-12-17 21:10:34 +00:00
|
|
|
*s++ = '0' + u % 10U;
|
|
|
|
while (u /= 10U);
|
1998-10-12 21:16:26 +00:00
|
|
|
while (--s >= buf)
|
|
|
|
putchar(*s);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
putchar(c);
|
|
|
|
}
|
|
|
|
va_end(ap);
|
2002-10-08 15:48:43 +00:00
|
|
|
return;
|
1998-10-12 21:16:26 +00:00
|
|
|
}
|
|
|
|
|
2002-10-08 15:48:43 +00:00
|
|
|
static void
|
1998-10-12 21:16:26 +00:00
|
|
|
putchar(int c)
|
|
|
|
{
|
|
|
|
if (c == '\n')
|
1998-10-15 20:04:21 +00:00
|
|
|
xputc('\r');
|
2002-10-08 15:48:43 +00:00
|
|
|
xputc(c);
|
1998-10-12 21:16:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2007-10-24 21:33:00 +00:00
|
|
|
bcmp(const void *b1, const void *b2, size_t length)
|
|
|
|
{
|
|
|
|
const char *p1 = b1, *p2 = b2;
|
|
|
|
|
|
|
|
if (length == 0)
|
|
|
|
return (0);
|
|
|
|
do {
|
|
|
|
if (*p1++ != *p2++)
|
|
|
|
break;
|
|
|
|
} while (--length);
|
|
|
|
return (length);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct {
|
|
|
|
uint16_t len;
|
|
|
|
uint16_t count;
|
|
|
|
uint16_t seg;
|
|
|
|
uint16_t off;
|
|
|
|
uint64_t lba;
|
|
|
|
} packet;
|
|
|
|
|
|
|
|
static int
|
|
|
|
drvread(void *buf, daddr_t lba, unsigned nblk)
|
1998-10-12 21:16:26 +00:00
|
|
|
{
|
1998-10-13 23:00:47 +00:00
|
|
|
static unsigned c = 0x2d5c7c2f;
|
|
|
|
|
2005-10-16 20:22:36 +00:00
|
|
|
if (!OPT_CHECK(RBX_QUIET))
|
|
|
|
printf("%c\b", c = c << 8 | c >> 24);
|
2007-10-24 21:33:00 +00:00
|
|
|
packet.len = 0x10;
|
|
|
|
packet.count = nblk;
|
|
|
|
packet.seg = VTOPOFF(buf);
|
|
|
|
packet.off = VTOPSEG(buf);
|
|
|
|
packet.lba = lba;
|
1998-10-12 21:16:26 +00:00
|
|
|
v86.ctl = V86_FLAGS;
|
2007-10-24 21:33:00 +00:00
|
|
|
v86.addr = 0x13;
|
|
|
|
v86.eax = 0x4200;
|
|
|
|
v86.edx = dsk.drive;
|
|
|
|
v86.ds = VTOPSEG(&packet);
|
|
|
|
v86.esi = VTOPOFF(&packet);
|
|
|
|
v86int();
|
1998-10-12 21:16:26 +00:00
|
|
|
if (V86_CY(v86.efl)) {
|
2002-12-17 21:10:34 +00:00
|
|
|
printf("error %u lba %u\n", v86.eax >> 8 & 0xff, lba);
|
1998-10-12 21:16:26 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
keyhit(unsigned ticks)
|
|
|
|
{
|
1998-10-13 22:17:05 +00:00
|
|
|
uint32_t t0, t1;
|
1998-10-12 21:16:26 +00:00
|
|
|
|
2005-10-16 20:22:36 +00:00
|
|
|
if (OPT_CHECK(RBX_NOINTR))
|
2002-03-23 19:40:27 +00:00
|
|
|
return 0;
|
1998-10-13 22:17:05 +00:00
|
|
|
t0 = 0;
|
1998-10-12 21:16:26 +00:00
|
|
|
for (;;) {
|
1998-10-15 20:04:21 +00:00
|
|
|
if (xgetc(1))
|
1998-10-12 21:16:26 +00:00
|
|
|
return 1;
|
1998-10-13 22:17:05 +00:00
|
|
|
t1 = *(uint32_t *)PTOV(0x46c);
|
|
|
|
if (!t0)
|
|
|
|
t0 = t1;
|
|
|
|
if (t1 < t0 || t1 >= t0 + ticks)
|
1998-10-12 21:16:26 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
1998-10-15 20:04:21 +00:00
|
|
|
xputc(int c)
|
|
|
|
{
|
2002-04-11 09:21:10 +00:00
|
|
|
if (ioctrl & IO_KEYBOARD)
|
1998-10-15 20:04:21 +00:00
|
|
|
putc(c);
|
2002-04-11 09:21:10 +00:00
|
|
|
if (ioctrl & IO_SERIAL)
|
1998-10-15 20:04:21 +00:00
|
|
|
sio_putc(c);
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
xgetc(int fn)
|
|
|
|
{
|
2005-10-16 20:22:36 +00:00
|
|
|
if (OPT_CHECK(RBX_NOINTR))
|
2002-03-23 19:40:27 +00:00
|
|
|
return 0;
|
1998-10-15 20:04:21 +00:00
|
|
|
for (;;) {
|
2002-04-11 09:21:10 +00:00
|
|
|
if (ioctrl & IO_KEYBOARD && getc(1))
|
1998-10-15 20:04:21 +00:00
|
|
|
return fn ? 1 : getc(0);
|
2002-04-11 09:21:10 +00:00
|
|
|
if (ioctrl & IO_SERIAL && sio_ischar())
|
1998-10-15 20:04:21 +00:00
|
|
|
return fn ? 1 : sio_getc();
|
|
|
|
if (fn)
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-10-12 21:16:26 +00:00
|
|
|
static int
|
1998-10-15 20:04:21 +00:00
|
|
|
getc(int fn)
|
1998-10-12 21:16:26 +00:00
|
|
|
{
|
|
|
|
v86.addr = 0x16;
|
1998-10-15 20:04:21 +00:00
|
|
|
v86.eax = fn << 8;
|
1998-10-12 21:16:26 +00:00
|
|
|
v86int();
|
1998-10-15 20:04:21 +00:00
|
|
|
return fn == 0 ? v86.eax & 0xff : !V86_ZR(v86.efl);
|
1998-10-12 21:16:26 +00:00
|
|
|
}
|