forked from len0rd/rockbox
Ged rid of uisimulator/common/io.c for android builds.
Use host's functions for file i/o directly (open(), close() ,etc.), not the sim_* variants. Some dir functions need to be wrapped still because we need to cache the parents dir's path (host's dirent doesn't let us know). For the same reason (incompatibility) with host's dirent) detach some members from Rockbox' dirent struct and put it into an extra one, the values can be retrieved via the new dir_get_info(). Get rid of the sim_ prefix for sleep as well and change the signature to unix sleep(). git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27968 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
8e0a0babc5
commit
6eaab4d004
37 changed files with 389 additions and 157 deletions
|
|
@ -101,7 +101,7 @@ void sidPoke(int reg, unsigned char val) ICODE_ATTR;
|
|||
#define rel 13
|
||||
|
||||
enum {
|
||||
adc, _and, asl, bcc, bcs, beq, bit, bmi, bne, bpl, brk, bvc, bvs, clc,
|
||||
adc, _and, asl, bcc, bcs, beq, bit, bmi, bne, bpl, _brk, bvc, bvs, clc,
|
||||
cld, cli, clv, cmp, cpx, cpy, dec, dex, dey, eor, inc, inx, iny, jmp,
|
||||
jsr, lda, ldx, ldy, lsr, _nop, ora, pha, php, pla, plp, rol, ror, rti,
|
||||
rts, sbc, sec, sed, sei, sta, stx, sty, tax, tay, tsx, txa, txs, tya,
|
||||
|
|
@ -204,7 +204,7 @@ static const float decayReleaseTimes[16] ICONST_ATTR =
|
|||
};
|
||||
|
||||
static const int opcodes[256] ICONST_ATTR = {
|
||||
brk,ora,xxx,xxx,xxx,ora,asl,xxx,php,ora,asl,xxx,xxx,ora,asl,xxx,
|
||||
_brk,ora,xxx,xxx,xxx,ora,asl,xxx,php,ora,asl,xxx,xxx,ora,asl,xxx,
|
||||
bpl,ora,xxx,xxx,xxx,ora,asl,xxx,clc,ora,xxx,xxx,xxx,ora,asl,xxx,
|
||||
jsr,_and,xxx,xxx,bit,_and,rol,xxx,plp,_and,rol,xxx,bit,_and,rol,xxx,
|
||||
bmi,_and,xxx,xxx,xxx,_and,rol,xxx,sec,_and,xxx,xxx,xxx,_and,rol,xxx,
|
||||
|
|
@ -908,7 +908,7 @@ static inline void cpuParse(void)
|
|||
setflags(FLAG_N,bval&0x80);
|
||||
setflags(FLAG_V,bval&0x40);
|
||||
break;
|
||||
case brk:
|
||||
case _brk:
|
||||
pc=0; /* Just quit the emulation */
|
||||
break;
|
||||
case clc:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue