Statistics
| Branch: | Revision:

root / target-alpha / op_helper_mem.h @ 3a3b925d

History | View | Annotate | Download (1.2 kB)

1 4c9649a9 j_mayer
/*
2 4c9649a9 j_mayer
 *  Alpha emulation cpu micro-operations helpers for memory accesses for qemu.
3 5fafdf24 ths
 *
4 4c9649a9 j_mayer
 *  Copyright (c) 2007 Jocelyn Mayer
5 4c9649a9 j_mayer
 *
6 4c9649a9 j_mayer
 * This library is free software; you can redistribute it and/or
7 4c9649a9 j_mayer
 * modify it under the terms of the GNU Lesser General Public
8 4c9649a9 j_mayer
 * License as published by the Free Software Foundation; either
9 4c9649a9 j_mayer
 * version 2 of the License, or (at your option) any later version.
10 4c9649a9 j_mayer
 *
11 4c9649a9 j_mayer
 * This library is distributed in the hope that it will be useful,
12 4c9649a9 j_mayer
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 4c9649a9 j_mayer
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 4c9649a9 j_mayer
 * Lesser General Public License for more details.
15 4c9649a9 j_mayer
 *
16 4c9649a9 j_mayer
 * You should have received a copy of the GNU Lesser General Public
17 4c9649a9 j_mayer
 * License along with this library; if not, write to the Free Software
18 4c9649a9 j_mayer
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19 4c9649a9 j_mayer
 */
20 4c9649a9 j_mayer
21 4c9649a9 j_mayer
/* XXX: TODO */
22 4c9649a9 j_mayer
double glue(helper_ldff, MEMSUFFIX) (target_ulong ea)
23 4c9649a9 j_mayer
{
24 4c9649a9 j_mayer
    return 0;
25 4c9649a9 j_mayer
}
26 4c9649a9 j_mayer
27 4c9649a9 j_mayer
void glue(helper_stff, MEMSUFFIX) (target_ulong ea, double op)
28 4c9649a9 j_mayer
{
29 4c9649a9 j_mayer
}
30 4c9649a9 j_mayer
31 4c9649a9 j_mayer
double glue(helper_ldfg, MEMSUFFIX) (target_ulong ea)
32 4c9649a9 j_mayer
{
33 4c9649a9 j_mayer
    return 0;
34 4c9649a9 j_mayer
}
35 4c9649a9 j_mayer
36 4c9649a9 j_mayer
void glue(helper_stfg, MEMSUFFIX) (target_ulong ea, double op)
37 4c9649a9 j_mayer
{
38 4c9649a9 j_mayer
}
39 4c9649a9 j_mayer
40 4c9649a9 j_mayer
#undef MEMSUFFIX