/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright (c) 2000 by Sun Microsystems, Inc.
* All rights reserved.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <fcdriver/fcdriver.h>
void unaligned_xfetch(fcode_env_t *);
void unaligned_xstore(fcode_env_t *);
static void xbsplit(fcode_env_t *);
{
}
{
xforth_t d;
d = pop_xforth(env);
push_xforth(env, d);
return (d);
}
void
{
else
}
/*
* bxjoin ( b.lo b.2 b.3 b.4 b.5 b.6 b.7 b.hi -- o )
*/
static void
{
union {
} b;
int i;
for (i = 0; i < sizeof (xforth_t); i++)
}
/*
* <l@ ( qaddr -- n )
*/
static void
{
xforth_t a;
a = *addr;
push_xforth(env, a);
}
/*
* lxjoin ( quad.lo quad.hi -- o )
*/
static void
{
union {
} b;
int i;
for (i = 0; i < LF_PER_XF; i++)
}
/*
* wxjoin ( w.lo w.2 w.3 w.hi -- o )
*/
static void
{
union {
} b;
int i;
for (i = 0; i < WF_PER_XF; i++)
}
/*
* x, ( o -- )
*/
static void
{
}
/*
* x@ ( xaddr -- o )
*/
void
{
xforth_t a;
a = *addr;
push_xforth(env, a);
}
/*
* x! ( o xaddr -- )
*/
void
{
xforth_t a;
a = pop_xforth(env);
*addr = a;
}
/*
* /x ( -- n )
*/
static void
{
}
/*
* /x* ( nu1 -- nu2 )
*/
static void
{
}
/*
* xa+ ( addr1 index -- addr2 )
*/
static void
{
}
/*
* xa1+ ( addr1 -- addr2 )
*/
static void
{
}
/*
* xbflip ( oct1 -- oct2 )
*/
void
{
union {
} b, c;
int i;
for (i = 0; i < sizeof (xforth_t); i++)
}
void
{
int i;
}
}
void
{
int i;
}
}
/*
* xbflips ( xaddr len -- )
*/
static void
{
int i;
}
}
/*
* xbsplit ( o -- b.lo b.2 b.3 b.4 b.5 b.6 b.7 b.hi )
*/
static void
{
union {
} b;
int i;
for (i = 0; i < sizeof (xforth_t); i++)
}
/*
* xlflip ( oct1 -- oct2 )
*/
void
{
union {
} b, c;
int i;
for (i = 0; i < LF_PER_XF; i++)
}
/*
* xlflips ( xaddr len -- )
*/
static void
{
int i;
}
}
/*
* xlsplit ( o -- quad.lo quad.hi )
*/
static void
{
union {
} b;
int i;
for (i = 0; i < LF_PER_XF; i++)
}
/*
* xwflip ( oct1 -- oct2 )
*/
static void
{
union {
} b, c;
int i;
for (i = 0; i < WF_PER_XF; i++)
}
/*
* xwflips ( xaddr len -- )
*/
static void
{
int i;
}
}
/*
* xwsplit ( o -- w.lo w.2 w.3 w.hi )
*/
static void
{
union {
} b;
int i;
for (i = 0; i < WF_PER_XF; i++)
}
static void
_init(void)
{
}