aboutsummaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorSebastiano Tronto <sebastiano@tronto.net>2024-08-18 14:26:45 +0200
committerSebastiano Tronto <sebastiano@tronto.net>2024-08-18 14:26:45 +0200
commit18c9a8b8905304cf5f8fc15825769046a3144866 (patch)
treea7807bb32b0a5d9ded7d3cedccc598f64a9b00fe /utils
parentf25a10e19eca294c4e6a99e4f80ce5cfd11a0e5f (diff)
downloadnissy-core-18c9a8b8905304cf5f8fc15825769046a3144866.tar.gz
nissy-core-18c9a8b8905304cf5f8fc15825769046a3144866.zip
Reorganized folder structure
Diffstat (limited to 'utils')
-rwxr-xr-xutils/genmovecode.sh2
-rwxr-xr-xutils/gentranscode.sh4
-rw-r--r--utils/h48_to_lst.c2
-rw-r--r--utils/invert.c2
4 files changed, 5 insertions, 5 deletions
diff --git a/utils/genmovecode.sh b/utils/genmovecode.sh
index daf268e..ddde0f7 100755
--- a/utils/genmovecode.sh
+++ b/utils/genmovecode.sh
@@ -1,6 +1,6 @@
1#!/bin/sh 1#!/bin/sh
2 2
3cc -DDEBUG h48_to_lst.c ../src/cube.c -o h48_to_lst 3cc -DDEBUG h48_to_lst.c ../src/nissy.c -o h48_to_lst
4 4
5gen() { 5gen() {
6 for f in cubes/move_??_*.txt; do 6 for f in cubes/move_??_*.txt; do
diff --git a/utils/gentranscode.sh b/utils/gentranscode.sh
index 9f9ec4d..e3e199e 100755
--- a/utils/gentranscode.sh
+++ b/utils/gentranscode.sh
@@ -1,7 +1,7 @@
1#!/bin/sh 1#!/bin/sh
2 2
3cc -DDEBUG h48_to_lst.c ../src/cube.c -o h48_to_lst 3cc -DDEBUG h48_to_lst.c ../src/nissy.c -o h48_to_lst
4cc -DDEBUG invert.c ../src/cube.c -o invert 4cc -DDEBUG invert.c ../src/nissy.c -o invert
5 5
6lineavx() { printf '#define _trans_cube_%s ' "$1"; } 6lineavx() { printf '#define _trans_cube_%s ' "$1"; }
7linesrc() { printf '_static cube_fast_t _trans_cube_%s = ' "$1"; } 7linesrc() { printf '_static cube_fast_t _trans_cube_%s = ' "$1"; }
diff --git a/utils/h48_to_lst.c b/utils/h48_to_lst.c
index 977c95d..03265b7 100644
--- a/utils/h48_to_lst.c
+++ b/utils/h48_to_lst.c
@@ -2,7 +2,7 @@
2#include <inttypes.h> 2#include <inttypes.h>
3#include <stdbool.h> 3#include <stdbool.h>
4 4
5#include "../src/cube.h" 5#include "../src/nissy.h"
6 6
7#define STRLENMAX 1000 7#define STRLENMAX 1000
8 8
diff --git a/utils/invert.c b/utils/invert.c
index 9121a47..41580c0 100644
--- a/utils/invert.c
+++ b/utils/invert.c
@@ -2,7 +2,7 @@
2#include <inttypes.h> 2#include <inttypes.h>
3#include <stdbool.h> 3#include <stdbool.h>
4 4
5#include "../src/cube.h" 5#include "../src/nissy.h"
6 6
7#define STRLENMAX 1000 7#define STRLENMAX 1000
8 8

Generated with cgit - Back to sebastiano.tronto.net