summaryrefslogtreecommitdiff
path: root/source/scb/scb.c
diff options
context:
space:
mode:
authornasr <nsrddyn@gmail.com>2026-04-14 23:11:40 +0200
committernasr <nsrddyn@gmail.com>2026-04-14 23:11:40 +0200
commit4d2a2af0c7d4eec9a9e43e0ba08813fdebaf8f9c (patch)
tree339f3001e570d5e37946a46849a0ff5a4d238b19 /source/scb/scb.c
feature(setup): defininig the setup of the project
Diffstat (limited to 'source/scb/scb.c')
-rwxr-xr-xsource/scb/scb.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/source/scb/scb.c b/source/scb/scb.c
new file mode 100755
index 0000000..d81f244
--- /dev/null
+++ b/source/scb/scb.c
@@ -0,0 +1,8 @@
1#include "scb.h"
2
3s32 main(s32 argument_count, char **argument, char **env)
4{
5 assert_msg(argument_count < 2, "no arguments passed to scb");
6 init(argument_count, argument, env);
7
8}