Remove i386_elf_emit_arch_note
[deliverable/binutils-gdb.git] / sim / arm / communicate.h
CommitLineData
c906108c
SS
1/* communicate.h -- ARMulator comms support defns: ARM6 Instruction Emulator.
2 Copyright (C) 1994 Advanced RISC Machines Ltd.
3
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
3fd725ef 6 the Free Software Foundation; either version 3 of the License, or
c906108c
SS
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
51b318de 15 along with this program; if not, see <http://www.gnu.org/licenses/>. */
c906108c 16
dfcd3bfb
JM
17int MYread_char (int sock, unsigned char *c);
18void MYwrite_char (int sock, unsigned char c);
19int MYread_word (int sock, ARMword * here);
20void MYwrite_word (int sock, ARMword i);
21void MYwrite_string (int sock, char *s);
22int MYread_FPword (int sock, char *putinhere);
23void MYwrite_FPword (int sock, char *fromhere);
24int passon (int source, int dest, int n);
c906108c 25
dfcd3bfb 26int wait_for_osreply (ARMword * reply); /* from kid.c */
c906108c
SS
27
28#define OS_SendNothing 0x0
29#define OS_SendChar 0x1
30#define OS_SendWord 0x2
31#define OS_SendString 0x3
32
33/* The pipes between the two processes */
34extern int mumkid[2];
35extern int kidmum[2];
This page took 0.644356 seconds and 4 git commands to generate.