9os

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit ab54c2e52816118a7fb61460b204bd83bc939b71
parent 6f25d2d314c1cc04b98cc528fa89308a651ae07f
Author: Roberto Vargas <roberto.vargas@arm.com>
Date:   Wed, 20 Feb 2019 16:05:15 +0000

[hosted] Return fake values in io functions

Only to keep the compiler happy. These functions are only
placeholders to avoid linking errors.

Change-Id: Ie8bf23dce23ba00b5d1ad5dc5d98195ae0c14fdf

Diffstat:
Mtarget/hosted/arch.c | 6++++++
1 file changed, 6 insertions(+), 0 deletions(-)

diff --git a/target/hosted/arch.c b/target/hosted/arch.c @@ -39,31 +39,37 @@ dopanic(void) uint8_t inm8(void *addr) { + return 0; } uint16_t inm16(void *addr) { + return 0; } uint32_t inm32(void *addr) { + return 0; } uint8_t outm8(uint8_t val, void *addr) { + return 0; } uint16_t outm16(uint16_t val, void *addr) { + return 0; } uint32_t outm32(uint32_t val, void *addr) { + return 0; } void