Skip to content

Commit

Permalink
Initial PPC support.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Oct 2, 2000
1 parent f4207b7 commit a5ac125
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions BASIClib/Assembler.h
Expand Up @@ -25,14 +25,16 @@
# define _INCLUDING_LOCAL_ASM_CODE_

# if (defined __GNUC__)
# if (defined __I386)
# if (defined __vbArch_I386)
# include "Asm_I386_GNU.h"
# elif (defined __vbArch_PPC)
# include "Asm_PPC_GNU.h"
# else
# define ___NOASM___
# endif

# elif (defined __MSVC__)
# if (defined __I386)
# if (defined __vbArch_I386)
# include "Asm_I386_MSVC.h"
# else
# define ___NOASM___
Expand Down

0 comments on commit a5ac125

Please sign in to comment.