JVM test

Dependencies:   mbed

Committer:
lynxeyed_atsu
Date:
Mon Aug 26 15:02:07 2013 +0000
Revision:
6:b9d0d96b052f
Parent:
5:047542b65d00
Child:
7:2a384a077520
Fixed to boot class file from flash.

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 6:b9d0d96b052f 6
lynxeyed_atsu 5:047542b65d00 7 // functions
lynxeyed_atsu 5:047542b65d00 8 void hardware_init(void);
lynxeyed_atsu 5:047542b65d00 9 void uart_init(int baud_rate);
lynxeyed_atsu 5:047542b65d00 10 void uart_print(char *str);
lynxeyed_atsu 5:047542b65d00 11 int uart_read(void);
lynxeyed_atsu 5:047542b65d00 12 int time_millis(void);
lynxeyed_atsu 5:047542b65d00 13 void port_write(int port, int bit, int value);
lynxeyed_atsu 5:047542b65d00 14
lynxeyed_atsu 6:b9d0d96b052f 15 void bytecode_read_init(void);
lynxeyed_atsu 6:b9d0d96b052f 16 char* bytecode_read(int bc_num, int length);
lynxeyed_atsu 5:047542b65d00 17 void setup_systick(void);
lynxeyed_atsu 5:047542b65d00 18
lynxeyed_atsu 5:047542b65d00 19 #endif
lynxeyed_atsu 5:047542b65d00 20
lynxeyed_atsu 6:b9d0d96b052f 21