Advertisement
Guest User

Untitled

a guest
May 11th, 2017
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 52.10 KB | None | 0 0
  1. $ make -j4 -f Makefile.libretro
  2. g++ -c -o fmgen/file.o fmgen/file.cpp -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -fpermissive
  3. g++ -c -o fmgen/fmg_wrap.o fmgen/fmg_wrap.cpp -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -fpermissive
  4. g++ -c -o fmgen/fmgen.o fmgen/fmgen.cpp -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -fpermissive
  5. g++ -c -o fmgen/fmtimer.o fmgen/fmtimer.cpp -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -fpermissive
  6. g++ -c -o fmgen/opm.o fmgen/opm.cpp -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -fpermissive
  7. g++ -c -o fmgen/opna.o fmgen/opna.cpp -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -fpermissive
  8. g++ -c -o fmgen/psg.o fmgen/psg.cpp -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -fpermissive
  9. g++ -c -o libretro/winx68k.o libretro/winx68k.cpp -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -fpermissive
  10. gcc -c -o x68k/d68k.o x68k/d68k.c -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -std=gnu99
  11. gcc -c -o m68000/m68000.o m68000/m68000.c -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -std=gnu99
  12. gcc -c -o m68000/c68k/c68k.o m68000/c68k/c68k.c -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -std=gnu99
  13. In file included from ./libretro/common.h:4:0,
  14. from m68000/c68k/c68k.h:36,
  15. from m68000/m68000.h:13,
  16. from m68000/m68000.c:9:
  17. ./win32api/windows.h:80:0: warning: "UNUSED" redefined
  18. #define UNUSED(v) ((void)(v))
  19. ^
  20. In file included from m68000/c68k/c68k.h:35:0,
  21. from m68000/m68000.h:13,
  22. from m68000/m68000.c:9:
  23. m68000/c68k/core.h:286:0: note: this is the location of the previous definition
  24. #define UNUSED __attribute ((unused))
  25. ^
  26. In file included from m68000/c68k/c68k.h:36:0,
  27. from m68000/m68000.h:13,
  28. from m68000/m68000.c:9:
  29. ./libretro/common.h:17:0: warning: "FASTCALL" redefined
  30. #define FASTCALL
  31. ^
  32. In file included from m68000/c68k/c68k.h:35:0,
  33. from m68000/m68000.h:13,
  34. from m68000/m68000.c:9:
  35. m68000/c68k/core.h:45:0: note: this is the location of the previous definition
  36. #define FASTCALL __attribute__((fastcall))
  37. ^
  38. In file included from m68000/m68000.c:18:0:
  39. m68000/m68000.c: In function 'm68000_init':
  40. m68000/../x68k/memory.h:6:23: warning: passing argument 2 of 'C68k_Set_ReadB' from incompatible pointer type [-Wincompatible-pointer-types]
  41. #define Memory_ReadB cpu_readmem24
  42. ^
  43. m68000/m68000.c:98:27: note: in expansion of macro 'Memory_ReadB'
  44. C68k_Set_ReadB(&C68K, Memory_ReadB);
  45. ^
  46. In file included from m68000/m68000.h:13:0,
  47. from m68000/m68000.c:9:
  48. m68000/c68k/c68k.h:190:9: note: expected 'u32 (*)(const u32) {aka long unsigned int (*)(const long unsigned int)}' but argument is of type 'BYTE (*)(DWORD) {aka unsigned char (*)(unsigned int)}'
  49. void C68k_Set_ReadB(c68k_struc *cpu, C68K_READ *Func);
  50. ^
  51. In file included from m68000/m68000.c:18:0:
  52. m68000/../x68k/memory.h:7:23: warning: passing argument 2 of 'C68k_Set_ReadW' from incompatible pointer type [-Wincompatible-pointer-types]
  53. #define Memory_ReadW cpu_readmem24_word
  54. ^
  55. m68000/m68000.c:99:27: note: in expansion of macro 'Memory_ReadW'
  56. C68k_Set_ReadW(&C68K, Memory_ReadW);
  57. ^
  58. In file included from m68000/m68000.h:13:0,
  59. from m68000/m68000.c:9:
  60. m68000/c68k/c68k.h:191:9: note: expected 'u32 (*)(const u32) {aka long unsigned int (*)(const long unsigned int)}' but argument is of type 'WORD (*)(DWORD) {aka short unsigned int (*)(unsigned int)}'
  61. void C68k_Set_ReadW(c68k_struc *cpu, C68K_READ *Func);
  62. ^
  63. In file included from m68000/m68000.c:18:0:
  64. m68000/../x68k/memory.h:10:24: warning: passing argument 2 of 'C68k_Set_WriteB' from incompatible pointer type [-Wincompatible-pointer-types]
  65. #define Memory_WriteB cpu_writemem24
  66. ^
  67. m68000/m68000.c:100:28: note: in expansion of macro 'Memory_WriteB'
  68. C68k_Set_WriteB(&C68K, Memory_WriteB);
  69. ^
  70. In file included from m68000/m68000.h:13:0,
  71. from m68000/m68000.c:9:
  72. m68000/c68k/c68k.h:192:9: note: expected 'void (*)(const u32, u32) {aka void (*)(const long unsigned int, long unsigned int)}' but argument is of type 'void (*)(DWORD, BYTE) {aka void (*)(unsigned int, unsigned char)}'
  73. void C68k_Set_WriteB(c68k_struc *cpu, C68K_WRITE *Func);
  74. ^
  75. In file included from m68000/m68000.c:18:0:
  76. m68000/../x68k/memory.h:11:24: warning: passing argument 2 of 'C68k_Set_WriteW' from incompatible pointer type [-Wincompatible-pointer-types]
  77. #define Memory_WriteW cpu_writemem24_word
  78. ^
  79. m68000/m68000.c:101:28: note: in expansion of macro 'Memory_WriteW'
  80. C68k_Set_WriteW(&C68K, Memory_WriteW);
  81. ^
  82. In file included from m68000/m68000.h:13:0,
  83. from m68000/m68000.c:9:
  84. m68000/c68k/c68k.h:193:9: note: expected 'void (*)(const u32, u32) {aka void (*)(const long unsigned int, long unsigned int)}' but argument is of type 'void (*)(DWORD, WORD) {aka void (*)(unsigned int, short unsigned int)}'
  85. void C68k_Set_WriteW(c68k_struc *cpu, C68K_WRITE *Func);
  86. ^
  87. m68000/m68000.c:103:51: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  88. C68k_Set_Fetch(&C68K, 0x000000, 0xbfffff, (pointer)MEM);
  89. ^
  90. m68000/m68000.c:104:51: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  91. C68k_Set_Fetch(&C68K, 0xc00000, 0xc7ffff, (pointer)GVRAM);
  92. ^
  93. m68000/m68000.c:105:51: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  94. C68k_Set_Fetch(&C68K, 0xe00000, 0xe7ffff, (pointer)TVRAM);
  95. ^
  96. m68000/m68000.c:106:51: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  97. C68k_Set_Fetch(&C68K, 0xea0000, 0xea1fff, (pointer)SCSIIPL);
  98. ^
  99. m68000/m68000.c:107:51: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  100. C68k_Set_Fetch(&C68K, 0xed0000, 0xed3fff, (pointer)SRAM);
  101. ^
  102. m68000/m68000.c:108:51: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  103. C68k_Set_Fetch(&C68K, 0xf00000, 0xfbffff, (pointer)FONT);
  104. ^
  105. m68000/m68000.c:109:51: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  106. C68k_Set_Fetch(&C68K, 0xfc0000, 0xffffff, (pointer)IPL);
  107. ^
  108. gcc -c -o m68000/c68k/c68kexec.o m68000/c68k/c68kexec.c -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -std=gnu99
  109. In file included from ./libretro/common.h:4:0,
  110. from m68000/c68k/c68k.h:36,
  111. from m68000/c68k/c68k.c:35:
  112. ./win32api/windows.h:80:0: warning: "UNUSED" redefined
  113. #define UNUSED(v) ((void)(v))
  114. ^
  115. In file included from m68000/c68k/c68k.h:35:0,
  116. from m68000/c68k/c68k.c:35:
  117. m68000/c68k/core.h:286:0: note: this is the location of the previous definition
  118. #define UNUSED __attribute ((unused))
  119. ^
  120. In file included from m68000/c68k/c68k.h:36:0,
  121. from m68000/c68k/c68k.c:35:
  122. ./libretro/common.h:17:0: warning: "FASTCALL" redefined
  123. #define FASTCALL
  124. ^
  125. In file included from m68000/c68k/c68k.h:35:0,
  126. from m68000/c68k/c68k.c:35:
  127. m68000/c68k/core.h:45:0: note: this is the location of the previous definition
  128. #define FASTCALL __attribute__((fastcall))
  129. ^
  130. gcc -c -o x68k/adpcm.o x68k/adpcm.c -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -std=gnu99
  131. In file included from ./libretro/common.h:4:0,
  132. from m68000/c68k/c68k.h:36,
  133. from m68000/c68k/c68kexec.c:25:
  134. ./win32api/windows.h:80:0: warning: "UNUSED" redefined
  135. #define UNUSED(v) ((void)(v))
  136. ^
  137. In file included from m68000/c68k/c68kexec.c:24:0:
  138. m68000/c68k/core.h:286:0: note: this is the location of the previous definition
  139. #define UNUSED __attribute ((unused))
  140. ^
  141. In file included from m68000/c68k/c68k.h:36:0,
  142. from m68000/c68k/c68kexec.c:25:
  143. ./libretro/common.h:17:0: warning: "FASTCALL" redefined
  144. #define FASTCALL
  145. ^
  146. In file included from m68000/c68k/c68kexec.c:24:0:
  147. m68000/c68k/core.h:45:0: note: this is the location of the previous definition
  148. #define FASTCALL __attribute__((fastcall))
  149. ^
  150. In file included from m68000/c68k/c68kexec.c:135:0:
  151. m68000/c68k/c68kexec.c: In function 'C68k_Exec':
  152. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  153. (*(u16*)PC)
  154. ^
  155. m68000/c68k/c68kmac.inc:52:14: note: in expansion of macro 'FETCH_WORD'
  156. Opcode = FETCH_WORD; \
  157. ^
  158. m68000/c68k/c68kexec.c:271:5: note: in expansion of macro 'NEXT'
  159. NEXT
  160. ^
  161. m68000/c68k/c68kmac.inc:183:4: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  162. ((*(u16*)PC) & 0xFF)
  163. ^
  164. m68000/c68k/c68k_op0.inc:7:8: note: in expansion of macro 'FETCH_BYTE'
  165. src = FETCH_BYTE;
  166. ^
  167. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  168. (*(u16*)PC)
  169. ^
  170. m68000/c68k/c68kmac.inc:52:14: note: in expansion of macro 'FETCH_WORD'
  171. Opcode = FETCH_WORD; \
  172. ^
  173. m68000/c68k/c68kmac.inc:68:5: note: in expansion of macro 'NEXT'
  174. NEXT
  175. ^
  176. m68000/c68k/c68k_op0.inc:17:1: note: in expansion of macro 'RET'
  177. RET(8)
  178. ^
  179. m68000/c68k/c68kmac.inc:183:4: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  180. ((*(u16*)PC) & 0xFF)
  181. ^
  182. m68000/c68k/c68k_op0.inc:25:8: note: in expansion of macro 'FETCH_BYTE'
  183. src = FETCH_BYTE;
  184. ^
  185. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  186. (*(u16*)PC)
  187. ^
  188. m68000/c68k/c68kmac.inc:52:14: note: in expansion of macro 'FETCH_WORD'
  189. Opcode = FETCH_WORD; \
  190. ^
  191. m68000/c68k/c68kmac.inc:68:5: note: in expansion of macro 'NEXT'
  192. NEXT
  193. ^
  194. m68000/c68k/c68k_op0.inc:38:1: note: in expansion of macro 'RET'
  195. RET(16)
  196. ^
  197. m68000/c68k/c68kmac.inc:183:4: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  198. ((*(u16*)PC) & 0xFF)
  199. ^
  200. m68000/c68k/c68k_op0.inc:46:8: note: in expansion of macro 'FETCH_BYTE'
  201. src = FETCH_BYTE;
  202. ^
  203. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  204. (*(u16*)PC)
  205. ^
  206. m68000/c68k/c68kmac.inc:52:14: note: in expansion of macro 'FETCH_WORD'
  207. Opcode = FETCH_WORD; \
  208. ^
  209. m68000/c68k/c68kmac.inc:68:5: note: in expansion of macro 'NEXT'
  210. NEXT
  211. ^
  212. m68000/c68k/c68k_op0.inc:60:1: note: in expansion of macro 'RET'
  213. RET(16)
  214. ^
  215. m68000/c68k/c68kmac.inc:183:4: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  216. ((*(u16*)PC) & 0xFF)
  217. ^
  218. m68000/c68k/c68k_op0.inc:68:8: note: in expansion of macro 'FETCH_BYTE'
  219. src = FETCH_BYTE;
  220. ^
  221. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  222. (*(u16*)PC)
  223. ^
  224. m68000/c68k/c68kmac.inc:52:14: note: in expansion of macro 'FETCH_WORD'
  225. Opcode = FETCH_WORD; \
  226. ^
  227. m68000/c68k/c68kmac.inc:68:5: note: in expansion of macro 'NEXT'
  228. NEXT
  229. ^
  230. m68000/c68k/c68k_op0.inc:82:1: note: in expansion of macro 'RET'
  231. RET(18)
  232. ^
  233. m68000/c68k/c68kmac.inc:183:4: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  234. ((*(u16*)PC) & 0xFF)
  235. ^
  236. m68000/c68k/c68k_op0.inc:90:8: note: in expansion of macro 'FETCH_BYTE'
  237. src = FETCH_BYTE;
  238. ^
  239. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  240. (*(u16*)PC)
  241. ^
  242. m68000/c68k/c68k_op0.inc:92:46: note: in expansion of macro 'FETCH_WORD'
  243. adr = CPU->A[(Opcode >> 0) & 7] + (s32)(s16)FETCH_WORD;
  244. ^
  245. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  246. (*(u16*)PC)
  247. ^
  248. m68000/c68k/c68kmac.inc:52:14: note: in expansion of macro 'FETCH_WORD'
  249. Opcode = FETCH_WORD; \
  250. ^
  251. m68000/c68k/c68kmac.inc:68:5: note: in expansion of macro 'NEXT'
  252. NEXT
  253. ^
  254. m68000/c68k/c68k_op0.inc:104:1: note: in expansion of macro 'RET'
  255. RET(20)
  256. ^
  257. m68000/c68k/c68kmac.inc:183:4: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  258. ((*(u16*)PC) & 0xFF)
  259. ^
  260. m68000/c68k/c68k_op0.inc:112:8: note: in expansion of macro 'FETCH_BYTE'
  261. src = FETCH_BYTE;
  262. ^
  263. m68000/c68k/c68kmac.inc:196:13: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  264. ext = (*(u16*)PC); \
  265. ^
  266. m68000/c68k/c68k_op0.inc:115:2: note: in expansion of macro 'DECODE_EXT_WORD'
  267. DECODE_EXT_WORD
  268. ^
  269. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  270. (*(u16*)PC)
  271. ^
  272. m68000/c68k/c68kmac.inc:52:14: note: in expansion of macro 'FETCH_WORD'
  273. Opcode = FETCH_WORD; \
  274. ^
  275. m68000/c68k/c68kmac.inc:68:5: note: in expansion of macro 'NEXT'
  276. NEXT
  277. ^
  278. m68000/c68k/c68k_op0.inc:126:1: note: in expansion of macro 'RET'
  279. RET(22)
  280. ^
  281. m68000/c68k/c68kmac.inc:183:4: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  282. ((*(u16*)PC) & 0xFF)
  283. ^
  284. m68000/c68k/c68k_op0.inc:134:8: note: in expansion of macro 'FETCH_BYTE'
  285. src = FETCH_BYTE;
  286. ^
  287. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  288. (*(u16*)PC)
  289. ^
  290. m68000/c68k/c68k_op0.inc:136:18: note: in expansion of macro 'FETCH_WORD'
  291. adr = (s32)(s16)FETCH_WORD;
  292. ^
  293. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  294. (*(u16*)PC)
  295. ^
  296. m68000/c68k/c68kmac.inc:52:14: note: in expansion of macro 'FETCH_WORD'
  297. Opcode = FETCH_WORD; \
  298. ^
  299. m68000/c68k/c68kmac.inc:68:5: note: in expansion of macro 'NEXT'
  300. NEXT
  301. ^
  302. m68000/c68k/c68k_op0.inc:148:1: note: in expansion of macro 'RET'
  303. RET(20)
  304. ^
  305. m68000/c68k/c68kmac.inc:183:4: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  306. ((*(u16*)PC) & 0xFF)
  307. ^
  308. m68000/c68k/c68k_op0.inc:156:8: note: in expansion of macro 'FETCH_BYTE'
  309. src = FETCH_BYTE;
  310. ^
  311. m68000/c68k/c68kmac.inc:208:15: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  312. ((((u32)(*(u16*)PC)) << 16) | ((u32)(*(u16*)(PC + 2))))
  313. ^
  314. m68000/c68k/c68k_op0.inc:158:13: note: in expansion of macro 'FETCH_LONG'
  315. adr = (s32)FETCH_LONG;
  316. ^
  317. m68000/c68k/c68kmac.inc:208:43: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  318. ((((u32)(*(u16*)PC)) << 16) | ((u32)(*(u16*)(PC + 2))))
  319. ^
  320. m68000/c68k/c68k_op0.inc:158:13: note: in expansion of macro 'FETCH_LONG'
  321. adr = (s32)FETCH_LONG;
  322. ^
  323. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  324. (*(u16*)PC)
  325. ^
  326. m68000/c68k/c68kmac.inc:52:14: note: in expansion of macro 'FETCH_WORD'
  327. Opcode = FETCH_WORD; \
  328. ^
  329. m68000/c68k/c68kmac.inc:68:5: note: in expansion of macro 'NEXT'
  330. NEXT
  331. ^
  332. m68000/c68k/c68k_op0.inc:170:1: note: in expansion of macro 'RET'
  333. RET(24)
  334. ^
  335. m68000/c68k/c68kmac.inc:183:4: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  336. ((*(u16*)PC) & 0xFF)
  337. ^
  338. m68000/c68k/c68k_op0.inc:178:8: note: in expansion of macro 'FETCH_BYTE'
  339. src = FETCH_BYTE;
  340. ^
  341. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  342. (*(u16*)PC)
  343. ^
  344. m68000/c68k/c68kmac.inc:52:14: note: in expansion of macro 'FETCH_WORD'
  345. Opcode = FETCH_WORD; \
  346. ^
  347. m68000/c68k/c68kmac.inc:68:5: note: in expansion of macro 'NEXT'
  348. NEXT
  349. ^
  350. m68000/c68k/c68k_op0.inc:192:1: note: in expansion of macro 'RET'
  351. RET(16)
  352. ^
  353. m68000/c68k/c68kmac.inc:183:4: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  354. ((*(u16*)PC) & 0xFF)
  355. ^
  356. m68000/c68k/c68k_op0.inc:200:8: note: in expansion of macro 'FETCH_BYTE'
  357. src = FETCH_BYTE;
  358. ^
  359. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  360. (*(u16*)PC)
  361. ^
  362. m68000/c68k/c68kmac.inc:52:14: note: in expansion of macro 'FETCH_WORD'
  363. Opcode = FETCH_WORD; \
  364. ^
  365. m68000/c68k/c68kmac.inc:68:5: note: in expansion of macro 'NEXT'
  366. NEXT
  367. ^
  368. m68000/c68k/c68k_op0.inc:214:1: note: in expansion of macro 'RET'
  369. RET(18)
  370. ^
  371. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  372. (*(u16*)PC)
  373. ^
  374. m68000/c68k/c68k_op0.inc:221:8: note: in expansion of macro 'FETCH_WORD'
  375. src = FETCH_WORD;
  376. ^
  377. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  378. (*(u16*)PC)
  379. ^
  380. m68000/c68k/c68kmac.inc:52:14: note: in expansion of macro 'FETCH_WORD'
  381. Opcode = FETCH_WORD; \
  382. ^
  383. m68000/c68k/c68kmac.inc:68:5: note: in expansion of macro 'NEXT'
  384. NEXT
  385. ^
  386. m68000/c68k/c68k_op0.inc:231:1: note: in expansion of macro 'RET'
  387. RET(8)
  388. ^
  389. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  390. (*(u16*)PC)
  391. ^
  392. m68000/c68k/c68k_op0.inc:239:8: note: in expansion of macro 'FETCH_WORD'
  393. src = FETCH_WORD;
  394. ^
  395. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  396. (*(u16*)PC)
  397. ^
  398. m68000/c68k/c68kmac.inc:52:14: note: in expansion of macro 'FETCH_WORD'
  399. Opcode = FETCH_WORD; \
  400. ^
  401. m68000/c68k/c68kmac.inc:68:5: note: in expansion of macro 'NEXT'
  402. NEXT
  403. ^
  404. m68000/c68k/c68k_op0.inc:252:1: note: in expansion of macro 'RET'
  405. RET(16)
  406. ^
  407. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  408. (*(u16*)PC)
  409. ^
  410. m68000/c68k/c68k_op0.inc:260:8: note: in expansion of macro 'FETCH_WORD'
  411. src = FETCH_WORD;
  412. ^
  413. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  414. (*(u16*)PC)
  415. ^
  416. m68000/c68k/c68kmac.inc:52:14: note: in expansion of macro 'FETCH_WORD'
  417. Opcode = FETCH_WORD; \
  418. ^
  419. m68000/c68k/c68kmac.inc:68:5: note: in expansion of macro 'NEXT'
  420. NEXT
  421. ^
  422. m68000/c68k/c68k_op0.inc:274:1: note: in expansion of macro 'RET'
  423. RET(16)
  424. ^
  425. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  426. (*(u16*)PC)
  427. ^
  428. m68000/c68k/c68k_op0.inc:282:8: note: in expansion of macro 'FETCH_WORD'
  429. src = FETCH_WORD;
  430. ^
  431. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  432. (*(u16*)PC)
  433. ^
  434. m68000/c68k/c68kmac.inc:52:14: note: in expansion of macro 'FETCH_WORD'
  435. Opcode = FETCH_WORD; \
  436. ^
  437. m68000/c68k/c68kmac.inc:68:5: note: in expansion of macro 'NEXT'
  438. NEXT
  439. ^
  440. m68000/c68k/c68k_op0.inc:296:1: note: in expansion of macro 'RET'
  441. RET(18)
  442. ^
  443. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  444. (*(u16*)PC)
  445. ^
  446. m68000/c68k/c68k_op0.inc:304:8: note: in expansion of macro 'FETCH_WORD'
  447. src = FETCH_WORD;
  448. ^
  449. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  450. (*(u16*)PC)
  451. ^
  452. m68000/c68k/c68k_op0.inc:306:46: note: in expansion of macro 'FETCH_WORD'
  453. adr = CPU->A[(Opcode >> 0) & 7] + (s32)(s16)FETCH_WORD;
  454. ^
  455. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  456. (*(u16*)PC)
  457. ^
  458. m68000/c68k/c68kmac.inc:52:14: note: in expansion of macro 'FETCH_WORD'
  459. Opcode = FETCH_WORD; \
  460. ^
  461. m68000/c68k/c68kmac.inc:68:5: note: in expansion of macro 'NEXT'
  462. NEXT
  463. ^
  464. m68000/c68k/c68k_op0.inc:318:1: note: in expansion of macro 'RET'
  465. RET(20)
  466. ^
  467. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  468. (*(u16*)PC)
  469. ^
  470. m68000/c68k/c68k_op0.inc:326:8: note: in expansion of macro 'FETCH_WORD'
  471. src = FETCH_WORD;
  472. ^
  473. m68000/c68k/c68kmac.inc:196:13: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  474. ext = (*(u16*)PC); \
  475. ^
  476. m68000/c68k/c68k_op0.inc:329:2: note: in expansion of macro 'DECODE_EXT_WORD'
  477. DECODE_EXT_WORD
  478. ^
  479. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  480. (*(u16*)PC)
  481. ^
  482. m68000/c68k/c68kmac.inc:52:14: note: in expansion of macro 'FETCH_WORD'
  483. Opcode = FETCH_WORD; \
  484. ^
  485. m68000/c68k/c68kmac.inc:68:5: note: in expansion of macro 'NEXT'
  486. NEXT
  487. ^
  488. m68000/c68k/c68k_op0.inc:340:1: note: in expansion of macro 'RET'
  489. RET(22)
  490. ^
  491. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  492. (*(u16*)PC)
  493. ^
  494. m68000/c68k/c68k_op0.inc:348:8: note: in expansion of macro 'FETCH_WORD'
  495. src = FETCH_WORD;
  496. ^
  497. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  498. (*(u16*)PC)
  499. ^
  500. m68000/c68k/c68k_op0.inc:350:18: note: in expansion of macro 'FETCH_WORD'
  501. adr = (s32)(s16)FETCH_WORD;
  502. ^
  503. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  504. (*(u16*)PC)
  505. ^
  506. m68000/c68k/c68kmac.inc:52:14: note: in expansion of macro 'FETCH_WORD'
  507. Opcode = FETCH_WORD; \
  508. ^
  509. m68000/c68k/c68kmac.inc:68:5: note: in expansion of macro 'NEXT'
  510. NEXT
  511. ^
  512. m68000/c68k/c68k_op0.inc:362:1: note: in expansion of macro 'RET'
  513. RET(20)
  514. ^
  515. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  516. (*(u16*)PC)
  517. ^
  518. m68000/c68k/c68k_op0.inc:370:8: note: in expansion of macro 'FETCH_WORD'
  519. src = FETCH_WORD;
  520. ^
  521. m68000/c68k/c68kmac.inc:208:15: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  522. ((((u32)(*(u16*)PC)) << 16) | ((u32)(*(u16*)(PC + 2))))
  523. ^
  524. m68000/c68k/c68k_op0.inc:372:13: note: in expansion of macro 'FETCH_LONG'
  525. adr = (s32)FETCH_LONG;
  526. ^
  527. m68000/c68k/c68kmac.inc:208:43: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  528. ((((u32)(*(u16*)PC)) << 16) | ((u32)(*(u16*)(PC + 2))))
  529. ^
  530. m68000/c68k/c68k_op0.inc:372:13: note: in expansion of macro 'FETCH_LONG'
  531. adr = (s32)FETCH_LONG;
  532. ^
  533. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  534. (*(u16*)PC)
  535. ^
  536. m68000/c68k/c68kmac.inc:52:14: note: in expansion of macro 'FETCH_WORD'
  537. Opcode = FETCH_WORD; \
  538. ^
  539. m68000/c68k/c68kmac.inc:68:5: note: in expansion of macro 'NEXT'
  540. NEXT
  541. ^
  542. m68000/c68k/c68k_op0.inc:384:1: note: in expansion of macro 'RET'
  543. RET(24)
  544. ^
  545. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  546. (*(u16*)PC)
  547. ^
  548. m68000/c68k/c68k_op0.inc:392:8: note: in expansion of macro 'FETCH_WORD'
  549. src = FETCH_WORD;
  550. ^
  551. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  552. (*(u16*)PC)
  553. ^
  554. m68000/c68k/c68kmac.inc:52:14: note: in expansion of macro 'FETCH_WORD'
  555. Opcode = FETCH_WORD; \
  556. ^
  557. m68000/c68k/c68kmac.inc:68:5: note: in expansion of macro 'NEXT'
  558. NEXT
  559. ^
  560. m68000/c68k/c68k_op0.inc:406:1: note: in expansion of macro 'RET'
  561. RET(16)
  562. ^
  563. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  564. (*(u16*)PC)
  565. ^
  566. m68000/c68k/c68k_op0.inc:414:8: note: in expansion of macro 'FETCH_WORD'
  567. src = FETCH_WORD;
  568. ^
  569. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  570. (*(u16*)PC)
  571. ^
  572. m68000/c68k/c68kmac.inc:52:14: note: in expansion of macro 'FETCH_WORD'
  573. Opcode = FETCH_WORD; \
  574. ^
  575. m68000/c68k/c68kmac.inc:68:5: note: in expansion of macro 'NEXT'
  576. NEXT
  577. ^
  578. m68000/c68k/c68k_op0.inc:428:1: note: in expansion of macro 'RET'
  579. RET(18)
  580. ^
  581. m68000/c68k/c68kmac.inc:208:15: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  582. ((((u32)(*(u16*)PC)) << 16) | ((u32)(*(u16*)(PC + 2))))
  583. ^
  584. m68000/c68k/c68k_op0.inc:435:8: note: in expansion of macro 'FETCH_LONG'
  585. src = FETCH_LONG;
  586. ^
  587. m68000/c68k/c68kmac.inc:208:43: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  588. ((((u32)(*(u16*)PC)) << 16) | ((u32)(*(u16*)(PC + 2))))
  589. ^
  590. m68000/c68k/c68k_op0.inc:435:8: note: in expansion of macro 'FETCH_LONG'
  591. src = FETCH_LONG;
  592. ^
  593. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  594. (*(u16*)PC)
  595. ^
  596. m68000/c68k/c68kmac.inc:52:14: note: in expansion of macro 'FETCH_WORD'
  597. Opcode = FETCH_WORD; \
  598. ^
  599. m68000/c68k/c68kmac.inc:68:5: note: in expansion of macro 'NEXT'
  600. NEXT
  601. ^
  602. m68000/c68k/c68k_op0.inc:445:1: note: in expansion of macro 'RET'
  603. RET(16)
  604. ^
  605. m68000/c68k/c68kmac.inc:208:15: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  606. ((((u32)(*(u16*)PC)) << 16) | ((u32)(*(u16*)(PC + 2))))
  607. ^
  608. m68000/c68k/c68k_op0.inc:453:8: note: in expansion of macro 'FETCH_LONG'
  609. src = FETCH_LONG;
  610. ^
  611. m68000/c68k/c68kmac.inc:208:43: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  612. ((((u32)(*(u16*)PC)) << 16) | ((u32)(*(u16*)(PC + 2))))
  613. ^
  614. m68000/c68k/c68k_op0.inc:453:8: note: in expansion of macro 'FETCH_LONG'
  615. src = FETCH_LONG;
  616. ^
  617. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  618. (*(u16*)PC)
  619. ^
  620. m68000/c68k/c68kmac.inc:52:14: note: in expansion of macro 'FETCH_WORD'
  621. Opcode = FETCH_WORD; \
  622. ^
  623. m68000/c68k/c68kmac.inc:68:5: note: in expansion of macro 'NEXT'
  624. NEXT
  625. ^
  626. m68000/c68k/c68k_op0.inc:466:1: note: in expansion of macro 'RET'
  627. RET(28)
  628. ^
  629. m68000/c68k/c68kmac.inc:208:15: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  630. ((((u32)(*(u16*)PC)) << 16) | ((u32)(*(u16*)(PC + 2))))
  631. ^
  632. m68000/c68k/c68k_op0.inc:474:8: note: in expansion of macro 'FETCH_LONG'
  633. src = FETCH_LONG;
  634. ^
  635. m68000/c68k/c68kmac.inc:208:43: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  636. ((((u32)(*(u16*)PC)) << 16) | ((u32)(*(u16*)(PC + 2))))
  637. ^
  638. m68000/c68k/c68k_op0.inc:474:8: note: in expansion of macro 'FETCH_LONG'
  639. src = FETCH_LONG;
  640. ^
  641. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  642. (*(u16*)PC)
  643. ^
  644. m68000/c68k/c68kmac.inc:52:14: note: in expansion of macro 'FETCH_WORD'
  645. Opcode = FETCH_WORD; \
  646. ^
  647. m68000/c68k/c68kmac.inc:68:5: note: in expansion of macro 'NEXT'
  648. NEXT
  649. ^
  650. m68000/c68k/c68k_op0.inc:488:1: note: in expansion of macro 'RET'
  651. RET(28)
  652. ^
  653. m68000/c68k/c68kmac.inc:208:15: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  654. ((((u32)(*(u16*)PC)) << 16) | ((u32)(*(u16*)(PC + 2))))
  655. ^
  656. m68000/c68k/c68k_op0.inc:496:8: note: in expansion of macro 'FETCH_LONG'
  657. src = FETCH_LONG;
  658. ^
  659. m68000/c68k/c68kmac.inc:208:43: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  660. ((((u32)(*(u16*)PC)) << 16) | ((u32)(*(u16*)(PC + 2))))
  661. ^
  662. m68000/c68k/c68k_op0.inc:496:8: note: in expansion of macro 'FETCH_LONG'
  663. src = FETCH_LONG;
  664. ^
  665. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  666. (*(u16*)PC)
  667. ^
  668. m68000/c68k/c68kmac.inc:52:14: note: in expansion of macro 'FETCH_WORD'
  669. Opcode = FETCH_WORD; \
  670. ^
  671. m68000/c68k/c68kmac.inc:68:5: note: in expansion of macro 'NEXT'
  672. NEXT
  673. ^
  674. m68000/c68k/c68k_op0.inc:510:1: note: in expansion of macro 'RET'
  675. RET(30)
  676. ^
  677. m68000/c68k/c68kmac.inc:208:15: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  678. ((((u32)(*(u16*)PC)) << 16) | ((u32)(*(u16*)(PC + 2))))
  679. ^
  680. m68000/c68k/c68k_op0.inc:518:8: note: in expansion of macro 'FETCH_LONG'
  681. src = FETCH_LONG;
  682. ^
  683. m68000/c68k/c68kmac.inc:208:43: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  684. ((((u32)(*(u16*)PC)) << 16) | ((u32)(*(u16*)(PC + 2))))
  685. ^
  686. m68000/c68k/c68k_op0.inc:518:8: note: in expansion of macro 'FETCH_LONG'
  687. src = FETCH_LONG;
  688. ^
  689. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  690. (*(u16*)PC)
  691. ^
  692. m68000/c68k/c68k_op0.inc:520:46: note: in expansion of macro 'FETCH_WORD'
  693. adr = CPU->A[(Opcode >> 0) & 7] + (s32)(s16)FETCH_WORD;
  694. ^
  695. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  696. (*(u16*)PC)
  697. ^
  698. m68000/c68k/c68kmac.inc:52:14: note: in expansion of macro 'FETCH_WORD'
  699. Opcode = FETCH_WORD; \
  700. ^
  701. m68000/c68k/c68kmac.inc:68:5: note: in expansion of macro 'NEXT'
  702. NEXT
  703. ^
  704. m68000/c68k/c68k_op0.inc:532:1: note: in expansion of macro 'RET'
  705. RET(32)
  706. ^
  707. m68000/c68k/c68kmac.inc:208:15: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  708. ((((u32)(*(u16*)PC)) << 16) | ((u32)(*(u16*)(PC + 2))))
  709. ^
  710. m68000/c68k/c68k_op0.inc:540:8: note: in expansion of macro 'FETCH_LONG'
  711. src = FETCH_LONG;
  712. ^
  713. m68000/c68k/c68kmac.inc:208:43: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  714. ((((u32)(*(u16*)PC)) << 16) | ((u32)(*(u16*)(PC + 2))))
  715. ^
  716. m68000/c68k/c68k_op0.inc:540:8: note: in expansion of macro 'FETCH_LONG'
  717. src = FETCH_LONG;
  718. ^
  719. m68000/c68k/c68kmac.inc:196:13: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  720. ext = (*(u16*)PC); \
  721. ^
  722. m68000/c68k/c68k_op0.inc:543:2: note: in expansion of macro 'DECODE_EXT_WORD'
  723. DECODE_EXT_WORD
  724. ^
  725. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  726. (*(u16*)PC)
  727. ^
  728. m68000/c68k/c68kmac.inc:52:14: note: in expansion of macro 'FETCH_WORD'
  729. Opcode = FETCH_WORD; \
  730. ^
  731. m68000/c68k/c68kmac.inc:68:5: note: in expansion of macro 'NEXT'
  732. NEXT
  733. ^
  734. m68000/c68k/c68k_op0.inc:554:1: note: in expansion of macro 'RET'
  735. RET(34)
  736. ^
  737. m68000/c68k/c68kmac.inc:208:15: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  738. ((((u32)(*(u16*)PC)) << 16) | ((u32)(*(u16*)(PC + 2))))
  739. ^
  740. m68000/c68k/c68k_op0.inc:562:8: note: in expansion of macro 'FETCH_LONG'
  741. src = FETCH_LONG;
  742. ^
  743. m68000/c68k/c68kmac.inc:208:43: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  744. ((((u32)(*(u16*)PC)) << 16) | ((u32)(*(u16*)(PC + 2))))
  745. ^
  746. m68000/c68k/c68k_op0.inc:562:8: note: in expansion of macro 'FETCH_LONG'
  747. src = FETCH_LONG;
  748. ^
  749. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  750. (*(u16*)PC)
  751. ^
  752. m68000/c68k/c68k_op0.inc:564:18: note: in expansion of macro 'FETCH_WORD'
  753. adr = (s32)(s16)FETCH_WORD;
  754. ^
  755. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  756. (*(u16*)PC)
  757. ^
  758. m68000/c68k/c68kmac.inc:52:14: note: in expansion of macro 'FETCH_WORD'
  759. Opcode = FETCH_WORD; \
  760. ^
  761. m68000/c68k/c68kmac.inc:68:5: note: in expansion of macro 'NEXT'
  762. NEXT
  763. ^
  764. m68000/c68k/c68k_op0.inc:576:1: note: in expansion of macro 'RET'
  765. RET(32)
  766. ^
  767. m68000/c68k/c68kmac.inc:208:15: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  768. ((((u32)(*(u16*)PC)) << 16) | ((u32)(*(u16*)(PC + 2))))
  769. ^
  770. m68000/c68k/c68k_op0.inc:584:8: note: in expansion of macro 'FETCH_LONG'
  771. src = FETCH_LONG;
  772. ^
  773. m68000/c68k/c68kmac.inc:208:43: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  774. ((((u32)(*(u16*)PC)) << 16) | ((u32)(*(u16*)(PC + 2))))
  775. ^
  776. m68000/c68k/c68k_op0.inc:584:8: note: in expansion of macro 'FETCH_LONG'
  777. src = FETCH_LONG;
  778. ^
  779. m68000/c68k/c68kmac.inc:208:15: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  780. ((((u32)(*(u16*)PC)) << 16) | ((u32)(*(u16*)(PC + 2))))
  781. ^
  782. m68000/c68k/c68k_op0.inc:586:13: note: in expansion of macro 'FETCH_LONG'
  783. adr = (s32)FETCH_LONG;
  784. ^
  785. m68000/c68k/c68kmac.inc:208:43: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  786. ((((u32)(*(u16*)PC)) << 16) | ((u32)(*(u16*)(PC + 2))))
  787. ^
  788. m68000/c68k/c68k_op0.inc:586:13: note: in expansion of macro 'FETCH_LONG'
  789. adr = (s32)FETCH_LONG;
  790. ^
  791. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  792. (*(u16*)PC)
  793. ^
  794. m68000/c68k/c68kmac.inc:52:14: note: in expansion of macro 'FETCH_WORD'
  795. Opcode = FETCH_WORD; \
  796. ^
  797. m68000/c68k/c68kmac.inc:68:5: note: in expansion of macro 'NEXT'
  798. NEXT
  799. ^
  800. m68000/c68k/c68k_op0.inc:598:1: note: in expansion of macro 'RET'
  801. RET(36)
  802. ^
  803. m68000/c68k/c68kmac.inc:208:15: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  804. ((((u32)(*(u16*)PC)) << 16) | ((u32)(*(u16*)(PC + 2))))
  805. ^
  806. m68000/c68k/c68k_op0.inc:606:8: note: in expansion of macro 'FETCH_LONG'
  807. src = FETCH_LONG;
  808. ^
  809. m68000/c68k/c68kmac.inc:208:43: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  810. ((((u32)(*(u16*)PC)) << 16) | ((u32)(*(u16*)(PC + 2))))
  811. ^
  812. m68000/c68k/c68k_op0.inc:606:8: note: in expansion of macro 'FETCH_LONG'
  813. src = FETCH_LONG;
  814. ^
  815. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  816. (*(u16*)PC)
  817. ^
  818. m68000/c68k/c68kmac.inc:52:14: note: in expansion of macro 'FETCH_WORD'
  819. Opcode = FETCH_WORD; \
  820. ^
  821. m68000/c68k/c68kmac.inc:68:5: note: in expansion of macro 'NEXT'
  822. NEXT
  823. ^
  824. m68000/c68k/c68k_op0.inc:620:1: note: in expansion of macro 'RET'
  825. RET(28)
  826. ^
  827. m68000/c68k/c68kmac.inc:208:15: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  828. ((((u32)(*(u16*)PC)) << 16) | ((u32)(*(u16*)(PC + 2))))
  829. ^
  830. m68000/c68k/c68k_op0.inc:628:8: note: in expansion of macro 'FETCH_LONG'
  831. src = FETCH_LONG;
  832. ^
  833. m68000/c68k/c68kmac.inc:208:43: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  834. ((((u32)(*(u16*)PC)) << 16) | ((u32)(*(u16*)(PC + 2))))
  835. ^
  836. m68000/c68k/c68k_op0.inc:628:8: note: in expansion of macro 'FETCH_LONG'
  837. src = FETCH_LONG;
  838. ^
  839. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  840. (*(u16*)PC)
  841. ^
  842. m68000/c68k/c68kmac.inc:52:14: note: in expansion of macro 'FETCH_WORD'
  843. Opcode = FETCH_WORD; \
  844. ^
  845. m68000/c68k/c68kmac.inc:68:5: note: in expansion of macro 'NEXT'
  846. NEXT
  847. ^
  848. m68000/c68k/c68k_op0.inc:642:1: note: in expansion of macro 'RET'
  849. RET(30)
  850. ^
  851. m68000/c68k/c68kmac.inc:183:4: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  852. ((*(u16*)PC) & 0xFF)
  853. ^
  854. m68000/c68k/c68k_op0.inc:648:8: note: in expansion of macro 'FETCH_BYTE'
  855. res = FETCH_BYTE & C68K_CCR_MASK;
  856. ^
  857. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  858. (*(u16*)PC)
  859. ^
  860. m68000/c68k/c68kmac.inc:52:14: note: in expansion of macro 'FETCH_WORD'
  861. Opcode = FETCH_WORD; \
  862. ^
  863. m68000/c68k/c68kmac.inc:68:5: note: in expansion of macro 'NEXT'
  864. NEXT
  865. ^
  866. m68000/c68k/c68k_op0.inc:653:1: note: in expansion of macro 'RET'
  867. RET(20)
  868. ^
  869. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  870. (*(u16*)PC)
  871. ^
  872. m68000/c68k/c68k_op0.inc:661:9: note: in expansion of macro 'FETCH_WORD'
  873. res = FETCH_WORD & C68K_SR_MASK;
  874. ^
  875. m68000/c68k/c68kmac.inc:183:4: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  876. ((*(u16*)PC) & 0xFF)
  877. ^
  878. m68000/c68k/c68k_op0.inc:690:8: note: in expansion of macro 'FETCH_BYTE'
  879. src = FETCH_BYTE;
  880. ^
  881. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  882. (*(u16*)PC)
  883. ^
  884. m68000/c68k/c68kmac.inc:52:14: note: in expansion of macro 'FETCH_WORD'
  885. Opcode = FETCH_WORD; \
  886. ^
  887. m68000/c68k/c68kmac.inc:68:5: note: in expansion of macro 'NEXT'
  888. NEXT
  889. ^
  890. m68000/c68k/c68k_op0.inc:700:1: note: in expansion of macro 'RET'
  891. RET(8)
  892. ^
  893. m68000/c68k/c68kmac.inc:183:4: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  894. ((*(u16*)PC) & 0xFF)
  895. ^
  896. m68000/c68k/c68k_op0.inc:708:8: note: in expansion of macro 'FETCH_BYTE'
  897. src = FETCH_BYTE;
  898. ^
  899. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  900. (*(u16*)PC)
  901. ^
  902. m68000/c68k/c68kmac.inc:52:14: note: in expansion of macro 'FETCH_WORD'
  903. Opcode = FETCH_WORD; \
  904. ^
  905. m68000/c68k/c68kmac.inc:68:5: note: in expansion of macro 'NEXT'
  906. NEXT
  907. ^
  908. m68000/c68k/c68k_op0.inc:721:1: note: in expansion of macro 'RET'
  909. RET(16)
  910. ^
  911. m68000/c68k/c68kmac.inc:183:4: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  912. ((*(u16*)PC) & 0xFF)
  913. ^
  914. m68000/c68k/c68k_op0.inc:729:8: note: in expansion of macro 'FETCH_BYTE'
  915. src = FETCH_BYTE;
  916. ^
  917. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  918. (*(u16*)PC)
  919. ^
  920. m68000/c68k/c68kmac.inc:52:14: note: in expansion of macro 'FETCH_WORD'
  921. Opcode = FETCH_WORD; \
  922. ^
  923. m68000/c68k/c68kmac.inc:68:5: note: in expansion of macro 'NEXT'
  924. NEXT
  925. ^
  926. m68000/c68k/c68k_op0.inc:743:1: note: in expansion of macro 'RET'
  927. RET(16)
  928. ^
  929. m68000/c68k/c68kmac.inc:183:4: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  930. ((*(u16*)PC) & 0xFF)
  931. ^
  932. m68000/c68k/c68k_op0.inc:751:8: note: in expansion of macro 'FETCH_BYTE'
  933. src = FETCH_BYTE;
  934. ^
  935. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  936. (*(u16*)PC)
  937. ^
  938. m68000/c68k/c68kmac.inc:52:14: note: in expansion of macro 'FETCH_WORD'
  939. Opcode = FETCH_WORD; \
  940. ^
  941. m68000/c68k/c68kmac.inc:68:5: note: in expansion of macro 'NEXT'
  942. NEXT
  943. ^
  944. m68000/c68k/c68k_op0.inc:765:1: note: in expansion of macro 'RET'
  945. RET(18)
  946. ^
  947. m68000/c68k/c68kmac.inc:183:4: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  948. ((*(u16*)PC) & 0xFF)
  949. ^
  950. m68000/c68k/c68k_op0.inc:773:8: note: in expansion of macro 'FETCH_BYTE'
  951. src = FETCH_BYTE;
  952. ^
  953. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  954. (*(u16*)PC)
  955. ^
  956. m68000/c68k/c68k_op0.inc:775:46: note: in expansion of macro 'FETCH_WORD'
  957. adr = CPU->A[(Opcode >> 0) & 7] + (s32)(s16)FETCH_WORD;
  958. ^
  959. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  960. (*(u16*)PC)
  961. ^
  962. m68000/c68k/c68kmac.inc:52:14: note: in expansion of macro 'FETCH_WORD'
  963. Opcode = FETCH_WORD; \
  964. ^
  965. m68000/c68k/c68kmac.inc:68:5: note: in expansion of macro 'NEXT'
  966. NEXT
  967. ^
  968. m68000/c68k/c68k_op0.inc:787:1: note: in expansion of macro 'RET'
  969. RET(20)
  970. ^
  971. m68000/c68k/c68kmac.inc:183:4: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  972. ((*(u16*)PC) & 0xFF)
  973. ^
  974. m68000/c68k/c68k_op0.inc:795:8: note: in expansion of macro 'FETCH_BYTE'
  975. src = FETCH_BYTE;
  976. ^
  977. m68000/c68k/c68kmac.inc:196:13: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  978. ext = (*(u16*)PC); \
  979. ^
  980. m68000/c68k/c68k_op0.inc:798:2: note: in expansion of macro 'DECODE_EXT_WORD'
  981. DECODE_EXT_WORD
  982. ^
  983. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  984. (*(u16*)PC)
  985. ^
  986. m68000/c68k/c68kmac.inc:52:14: note: in expansion of macro 'FETCH_WORD'
  987. Opcode = FETCH_WORD; \
  988. ^
  989. m68000/c68k/c68kmac.inc:68:5: note: in expansion of macro 'NEXT'
  990. NEXT
  991. ^
  992. m68000/c68k/c68k_op0.inc:809:1: note: in expansion of macro 'RET'
  993. RET(22)
  994. ^
  995. m68000/c68k/c68kmac.inc:183:4: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  996. ((*(u16*)PC) & 0xFF)
  997. ^
  998. m68000/c68k/c68k_op0.inc:817:8: note: in expansion of macro 'FETCH_BYTE'
  999. src = FETCH_BYTE;
  1000. ^
  1001. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  1002. (*(u16*)PC)
  1003. ^
  1004. m68000/c68k/c68k_op0.inc:819:18: note: in expansion of macro 'FETCH_WORD'
  1005. adr = (s32)(s16)FETCH_WORD;
  1006. ^
  1007. m68000/c68k/c68kmac.inc:186:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  1008. (*(u16*)PC)
  1009. ^
  1010. m68000/c68k/c68kmac.inc:52:14: note: in expansion of macro 'FETCH_WORD'
  1011. Opcode = FETCH_WORD; \
  1012. ^
  1013.  
  1014. [...] ***skipping more of the same***
  1015.  
  1016. gcc -c -o x68k/crtc.o x68k/crtc.c -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -std=gnu99
  1017. gcc -c -o x68k/dmac.o x68k/dmac.c -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -std=gnu99
  1018. gcc -c -o x68k/fdc.o x68k/fdc.c -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -std=gnu99
  1019. gcc -c -o x68k/fdd.o x68k/fdd.c -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -std=gnu99
  1020. gcc -c -o x68k/disk_d88.o x68k/disk_d88.c -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -std=gnu99
  1021. gcc -c -o x68k/disk_dim.o x68k/disk_dim.c -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -std=gnu99
  1022. gcc -c -o x68k/disk_xdf.o x68k/disk_xdf.c -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -std=gnu99
  1023. gcc -c -o x68k/gvram.o x68k/gvram.c -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -std=gnu99
  1024. gcc -c -o x68k/ioc.o x68k/ioc.c -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -std=gnu99
  1025. gcc -c -o x68k/irqh.o x68k/irqh.c -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -std=gnu99
  1026. gcc -c -o x68k/mem_wrap.o x68k/mem_wrap.c -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -std=gnu99
  1027. gcc -c -o x68k/mercury.o x68k/mercury.c -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -std=gnu99
  1028. gcc -c -o x68k/mfp.o x68k/mfp.c -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -std=gnu99
  1029. gcc -c -o x68k/palette.o x68k/palette.c -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -std=gnu99
  1030. gcc -c -o x68k/midi.o x68k/midi.c -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -std=gnu99
  1031. gcc -c -o x68k/pia.o x68k/pia.c -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -std=gnu99
  1032. gcc -c -o x68k/rtc.o x68k/rtc.c -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -std=gnu99
  1033. gcc -c -o x68k/sasi.o x68k/sasi.c -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -std=gnu99
  1034. gcc -c -o x68k/scc.o x68k/scc.c -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -std=gnu99
  1035. gcc -c -o x68k/scsi.o x68k/scsi.c -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -std=gnu99
  1036. gcc -c -o x68k/sram.o x68k/sram.c -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -std=gnu99
  1037. gcc -c -o x68k/sysport.o x68k/sysport.c -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -std=gnu99
  1038. gcc -c -o x68k/tvram.o x68k/tvram.c -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -std=gnu99
  1039. gcc -c -o libretro/joystick.o libretro/joystick.c -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -std=gnu99
  1040. gcc -c -o libretro/juliet.o libretro/juliet.c -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -std=gnu99
  1041. gcc -c -o libretro/keyboard.o libretro/keyboard.c -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -std=gnu99
  1042. gcc -c -o libretro/mouse.o libretro/mouse.c -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -std=gnu99
  1043. gcc -c -o libretro/prop.o libretro/prop.c -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -std=gnu99
  1044. gcc -c -o libretro/status.o libretro/status.c -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -std=gnu99
  1045. gcc -c -o libretro/timer.o libretro/timer.c -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -std=gnu99
  1046. gcc -c -o libretro/dswin.o libretro/dswin.c -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -std=gnu99
  1047. gcc -c -o libretro/windraw.o libretro/windraw.c -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -std=gnu99
  1048. gcc -c -o libretro/winui.o libretro/winui.c -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -std=gnu99
  1049. gcc -c -o libretro/about.o libretro/about.c -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -std=gnu99
  1050. gcc -c -o libretro/common.o libretro/common.c -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -std=gnu99
  1051. gcc -c -o win32api/dosio.o win32api/dosio.c -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -std=gnu99
  1052. gcc -c -o win32api/fake.o win32api/fake.c -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -std=gnu99
  1053. gcc -c -o win32api/peace.o win32api/peace.c -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -std=gnu99
  1054. gcc -c -o libretro.o libretro.c -DNO_MERCURY -DPX68K_VERSION=0.15 -O3 -ffast-math -fomit-frame-pointer -I. -I./libretro -I./x68k -I./fmgen -I./win32api -D__LIBRETRO__ -std=gnu99
  1055. libretro.c: In function 'pre_main':
  1056. libretro.c:169:4: warning: implicit declaration of function 'pmain' [-Wimplicit-function-declaration]
  1057. pmain(PARAMCOUNT,( char **)xargv_cmd);
  1058. ^
  1059. libretro.c: In function 'retro_deinit':
  1060. libretro.c:476:4: warning: implicit declaration of function 'end_loop_retro' [-Wimplicit-function-declaration]
  1061. end_loop_retro();
  1062. ^
  1063. libretro.c: In function 'retro_run':
  1064. libretro.c:509:4: warning: implicit declaration of function 'exec_app_retro' [-Wimplicit-function-declaration]
  1065. exec_app_retro();
  1066. ^
  1067. libretro.c:511:4: warning: implicit declaration of function 'raudio_callback' [-Wimplicit-function-declaration]
  1068. raudio_callback(NULL, NULL,SNDSZ*4);
  1069. ^
  1070. ***did ctrl+C here or it's stuck there forever***
  1071. Makefile.libretro:151: recipe for target 'm68000/c68k/c68kexec.o' failed
  1072. make: *** [m68000/c68k/c68kexec.o] Interrupt
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement