trunk/src/emu/cpu/powerpc/ppcdrc.c
| r243111 | r243112 | |
| 57 | 57 | ***************************************************************************/ |
| 58 | 58 | |
| 59 | 59 | #define R32(reg) m_regmap[reg] |
| 60 | | #define R32Z(reg) (((reg) == 0) ? parameter(0) : m_regmap[reg]) |
| 60 | #define R32Z(reg) (((reg) == 0) ? uml::parameter(0) : m_regmap[reg]) |
| 61 | 61 | #define F64(reg) m_fdregmap[reg] |
| 62 | 62 | #define CR32(reg) mem(&m_core->cr[reg]) |
| 63 | 63 | #define FPSCR32 mem(&m_core->fpscr) |
| r243111 | r243112 | |
| 1549 | 1549 | an exception if out |
| 1550 | 1550 | -------------------------------------------------*/ |
| 1551 | 1551 | |
| 1552 | | void ppc_device::generate_update_cycles(drcuml_block *block, compiler_state *compiler, parameter param, int allow_exception) |
| 1552 | void ppc_device::generate_update_cycles(drcuml_block *block, compiler_state *compiler, uml::parameter param, int allow_exception) |
| 1553 | 1553 | { |
| 1554 | 1554 | /* check full interrupts if pending */ |
| 1555 | 1555 | if (compiler->checkints) |
trunk/src/lib/util/astring.h
| r243111 | r243112 | |
| 32 | 32 | ~astring(); |
| 33 | 33 | |
| 34 | 34 | // construction with copy |
| 35 | | astring(const char *string) { init().cpy(string); } |
| 35 | astring(const char *string) { init(); if(string) cpy(string); } |
| 36 | 36 | astring(const char *string, int length) { init().cpy(string, length); } |
| 37 | 37 | astring(const char *str1, const char *str2) { init().cpy(str1).cat(str2); } |
| 38 | 38 | astring(const char *str1, const char *str2, const char *str3) { init().cpy(str1).cat(str2).cat(str3); } |