JVM test

Dependencies:   mbed

Committer:
lynxeyed_atsu
Date:
Sat Sep 07 04:59:10 2013 +0000
Revision:
9:4ea7773ea2b0
Parent:
7:2a384a077520
added if_icmp* mnemonics

Who changed what in which revision?

UserRevisionLine numberNew contents of line
lynxeyed_atsu 5:047542b65d00 1 #ifndef __DEVICE_DEPEND_H__
lynxeyed_atsu 5:047542b65d00 2 #define __DEVICE_DEPEND_H__
lynxeyed_atsu 5:047542b65d00 3
lynxeyed_atsu 5:047542b65d00 4 #include "mbed.h"
lynxeyed_atsu 5:047542b65d00 5
lynxeyed_atsu 5:047542b65d00 6 // functions
lynxeyed_atsu 5:047542b65d00 7 void hardware_init(void);
lynxeyed_atsu 5:047542b65d00 8 void uart_init(int baud_rate);
lynxeyed_atsu 5:047542b65d00 9 void uart_print(char *str);
lynxeyed_atsu 5:047542b65d00 10 int uart_read(void);
lynxeyed_atsu 5:047542b65d00 11 int time_millis(void);
lynxeyed_atsu 5:047542b65d00 12 void port_write(int port, int bit, int value);
lynxeyed_atsu 5:047542b65d00 13
lynxeyed_atsu 6:b9d0d96b052f 14 void bytecode_read_init(void);
lynxeyed_atsu 6:b9d0d96b052f 15 char* bytecode_read(int bc_num, int length);
lynxeyed_atsu 5:047542b65d00 16 void setup_systick(void);
lynxeyed_atsu 5:047542b65d00 17
lynxeyed_atsu 5:047542b65d00 18 #endif
lynxeyed_atsu 5:047542b65d00 19
lynxeyed_atsu 6:b9d0d96b052f 20