22 lines
433 B
C
22 lines
433 B
C
|
#include <sysinit.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
#include "basic/basic.h"
|
||
|
#include "basic/config.h"
|
||
|
|
||
|
#include "lcd/render.h"
|
||
|
#include "lcd/print.h"
|
||
|
|
||
|
#include "usetable.h"
|
||
|
|
||
|
/**************************************************************************/
|
||
|
|
||
|
void ram(void) {
|
||
|
lcdClear();
|
||
|
lcdPrintln("r0ket");
|
||
|
lcdPrintln("Release: ");
|
||
|
lcdPrintln(IntToStrX(getrelease(),8));
|
||
|
lcdRefresh();
|
||
|
while(!getInputRaw())work_queue();
|
||
|
};
|