16 lines
420 B
C
16 lines
420 B
C
#include <stdint.h>
|
|
|
|
void jh_print_to_screen(int param_1,int param_2,int param_3,int param_4,int param_5,char *param_6,
|
|
int param_7);
|
|
|
|
// uint r_log(char *fmt,...);
|
|
|
|
int notmain(char *msg, int msg_len){
|
|
// jh_print_to_screen(0x1234, 12, 0xfff, 0xfff, msg, msg_len, 2);
|
|
// volatile int a = 0;
|
|
// for(int i = 0; i < 100000; i++){
|
|
// a++;
|
|
// }
|
|
// while(1);
|
|
return 0;
|
|
} |