1
0
Fork 0

Almost there

gcc_bug
root 2015-01-10 14:30:03 +00:00
parent 81498ecce4
commit 1a99a7df80
2 changed files with 4 additions and 14 deletions

View File

@ -1,8 +1,8 @@
#include "bitboard.h"
namespace Bitboards { void init(); }
Bitboard A[8];
Bitboard B[8];
Bitboard C;
int A[8];
int B[8];
int C;
/// Bitboards::init() initializes various bitboard tables. It is called at
/// startup and relies on global objects to be already zero-initialized.

View File

@ -1,10 +0,0 @@
#ifndef BITBOARD_H_INCLUDED
#define BITBOARD_H_INCLUDED
#include <inttypes.h>
typedef uint64_t Bitboard;
namespace Bitboards { void init(); }
#endif // #ifndef BITBOARD_H_INCLUDED