- --
Viewing Issue Advanced Details
| ID | Category [?] | Severity [?] | Reproducibility | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 03202 | Compiling | Minor | Always | May 19, 2009, 15:50 | Dec 6, 2024, 22:07 |
| Tester | Firewave | View Status | Public | Platform | MAME (Self-compiled) |
| Assigned To | hap | Resolution | Fixed | OS | |
| Status [?] | Resolved | Driver | |||
| Version | 0.131u2 | Fixed in Version | 0.273 | Build | Debug |
| Fixed in Git Commit | 2a34189 | Github Pull Request # | |||
| Summary | 03202: src/mame/machine/irobot.c doesn't compile with DISASSEMBLE_MB_ROM set to 1 | ||||
| Description |
There are various errors in the function disassemble_instruction():
src/mame/machine/irobot.c: In function 'disassemble_instruction':
src/mame/machine/irobot.c:877: error: 'i' undeclared (first use in this function
)
src/mame/machine/irobot.c:877: error: (Each undeclared identifier is reported on
ly once
src/mame/machine/irobot.c:877: error: for each function it appears in.)
src/mame/machine/irobot.c:880: warning: format '%X' expects type 'unsigned int',
but argument 2 has type 'UINT32 *'
src/mame/machine/irobot.c:881: warning: format '%X' expects type 'unsigned int',
but argument 2 has type 'UINT32 *'
src/mame/machine/irobot.c:928: warning: format '%x' expects type 'unsigned int',
but argument 2 has type 'UINT32 *'
src/mame/machine/irobot.c:931: warning: format '%x' expects type 'unsigned int',
but argument 2 has type 'UINT32 *'
src/mame/machine/irobot.c:934: warning: format '%x' expects type 'unsigned int',
but argument 2 has type 'UINT32 *'
src/mame/machine/irobot.c:937: warning: format '%x' expects type 'unsigned int',
but argument 2 has type 'UINT32 *'
src/mame/machine/irobot.c:940: warning: format '%x' expects type 'unsigned int',
but argument 2 has type 'UINT32 *'
src/mame/machine/irobot.c:943: warning: format '%x' expects type 'unsigned int',
but argument 2 has type 'UINT32 *'
src/mame/machine/irobot.c:958: warning: format '%x' expects type 'unsigned int',
but argument 2 has type 'UINT32 *'
src/mame/machine/irobot.c:961: warning: format '%x' expects type 'unsigned int',
but argument 2 has type 'UINT32 *'
src/mame/machine/irobot.c:961: warning: format '%x' expects type 'unsigned int',
but argument 3 has type 'UINT32 *'
src/mame/machine/irobot.c:967: warning: format '%x' expects type 'unsigned int',
but argument 2 has type 'UINT32 *'
src/mame/machine/irobot.c:970: warning: format '%x' expects type 'unsigned int',
but argument 2 has type 'UINT32 *'
src/mame/machine/irobot.c:973: warning: format '%x' expects type 'unsigned int',
but argument 2 has type 'UINT32 *'
src/mame/machine/irobot.c:991: error: 'irmb_ops' has no member named 'jtype'
src/mame/machine/irobot.c:994: error: 'irmb_ops' has no member named 'jtype'
src/mame/machine/irobot.c:1018: error: 'irmb_ops' has no member named 'jtype'
src/mame/machine/irobot.c:1018: error: 'irmb_ops' has no member named 'nxtadd'
src/mame/machine/irobot.c:1019: error: 'irmb_ops' has no member named 'jtype'
src/mame/machine/irobot.c: At top level:
src/mame/machine/irobot.c:1022: error: expected identifier or '(' before '}' token
|
||||
| Steps To Reproduce | |||||
| Additional Information | |||||
| Github Commit | |||||
| Flags | |||||
| Regression Version | |||||
| Affected Sets / Systems | |||||
|
Attached Files
|
|||||
Relationships
| There are no relationship linked to this issue. |
Notes
2
|
No.04403
etabeta Developer
May 19, 2009, 18:47
|
waiting for Aaron's opinion... |
|---|---|
|
No.22553
hap Developer
Dec 6, 2024, 21:42
|
That hasn't been compiled in ages. One thing to note: you can't do this anymore and expect a "hello" logerror("h"); logerror("e"); logerror("l"); logerror("l"); logerror("o"); You'll get [:] h[:] e[:] l[:] l[:] o So you'll have to search/replace "[:] " to "" in your text editor. |