Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 1814 → Rev 1854

/programs/emulator/e80/trunk/compile.bat
File deleted
\ No newline at end of file
/programs/emulator/e80/trunk/compile_eng.bat
0,0 → 1,12
del *.o
fasm asm_code.asm start.o
echo #define LANG_ENG 1 > lang.h
gcc -c z80/z80.c
gcc -c system/kolibri.c
gcc -c system/stdlib.c
gcc -c system/string.c
gcc -c e80.c
ld -nostdlib -T kolibri.ld -o e80.kex start.o kolibri.o stdlib.o string.o z80.o e80.o
objcopy e80.kex -O binary
kpack e80.kex
pause
/programs/emulator/e80/trunk/compile_rus.bat
0,0 → 1,12
del *.o
fasm asm_code.asm start.o
echo #define LANG_RUS 1 > lang.h
gcc -c z80/z80.c
gcc -c system/kolibri.c
gcc -c system/stdlib.c
gcc -c system/string.c
gcc -c e80.c
ld -nostdlib -T kolibri.ld -o e80.kex start.o kolibri.o stdlib.o string.o z80.o e80.o
objcopy e80.kex -O binary
kpack e80.kex
pause
/programs/emulator/e80/trunk/e80.c
1,4 → 1,9
 
#ifndef AUTOBUILD
// autobuild does not create lang.h, but defines LANG_{RUS,ENG} directly
#include "lang.h"
#endif
 
#include "system/kolibri.h"
#include "system/stdlib.h"
#include "system/string.h"
/programs/emulator/e80/trunk/system/msgbox.c
18,9 → 18,7
 
///=============================
 
#define LANG_EN
 
#ifdef LANG_RU
#if LANG_RUS
char BTN_OK[]={"OK"};
char BTN_CANCEL[]={"Žâ¬¥­ "};
char BTN_ABORT[]={"à¥ªà â¨âì"};
27,9 → 25,7
char BTN_RETRY[]={"®¢â®à¨âì"};
char BTN_INGNORE[]={"ˆ£­®à¨à®¢ âì"};
char BTN_NO[]={"¥â"};
#endif
 
#ifdef LANG_EN
#else
char BTN_OK[]={"OK"};
char BTN_CANCEL[]={"Cancel"};
char BTN_ABORT[]={"Abort"};