summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorAargh Rai <aargh.rai+git@gmail.com>2026-02-24 22:49:43 +0530
committerAargh Rai <aargh.rai+git@gmail.com>2026-02-24 22:49:43 +0530
commit63fa6656749d1cdb6a54a001950048a9660f0d73 (patch)
tree39c7e0586c2ad761d65f56bdfd6c96f6bbfdccb9 /src/main.c
parent9cd36deffadc4f5ab83f08c2999407b31354027e (diff)
pawn forward movement works?
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
index 297ef20..6c05aa2 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1,7 +1,11 @@
#include <stdio.h>
#include "bitboard.h"
+#include "search.h"
int main() {
+ moves_t moves = moves_init();
+ position_t position = position_starting();
+ get_pawn_moves(&moves, position);
printf("Hello World\n");
return 0;
}