fix a windows compile error added when the gcc compile error was fixed

This commit is contained in:
zeromus 2009-09-16 22:51:26 +00:00
parent 831893aac7
commit c151e6983c
2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@
extern u32 (FASTCALL* arm_instructions_set_0[4096])(); extern u32 (FASTCALL* arm_instructions_set_0[4096])();
extern u32 (FASTCALL* arm_instructions_set_1[4096])(); extern u32 (FASTCALL* arm_instructions_set_1[4096])();
extern char* arm_instruction_names[4096]; extern const char* arm_instruction_names[4096];
#endif #endif

View File

@ -25,7 +25,7 @@
extern u32 (FASTCALL* thumb_instructions_set_0[1024])(); extern u32 (FASTCALL* thumb_instructions_set_0[1024])();
extern u32 (FASTCALL* thumb_instructions_set_1[1024])(); extern u32 (FASTCALL* thumb_instructions_set_1[1024])();
extern char* thumb_instruction_names[1024]; extern const char* thumb_instruction_names[1024];
#endif #endif