commit 72cbed81825f33be36fae8d5f84ca2f5a362ec94 Author: That-One-Nerd Date: Wed Jun 25 00:32:58 2025 -0400 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4cc0a8a --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +obj/ +bin/ +src/gfx/*.c +src/gfx/*.h +src/gfx/*.8xv +.DS_Store +convimg.yaml.lst diff --git a/icon.png b/icon.png new file mode 100644 index 0000000..08e5182 Binary files /dev/null and b/icon.png differ diff --git a/makefile b/makefile new file mode 100644 index 0000000..0b90fc3 --- /dev/null +++ b/makefile @@ -0,0 +1,15 @@ +# ---------------------------- +# Makefile Options +# ---------------------------- + +NAME = ALGEBRA +ICON = icon.png +DESCRIPTION = "Algebraic Manipulator v0.0.0" +COMPRESSED = NO + +CFLAGS = -Wall -Wextra -Oz +CXXFLAGS = -Wall -Wextra -Oz + +# ---------------------------- + +include $(shell cedev-config --makefile) diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..f47be23 --- /dev/null +++ b/readme.md @@ -0,0 +1,5 @@ +### Ti-84 Algebraic Manipulator. + +A program I plan to use in college. This program will parse and manipulate equations involving variables. + +Haven't done a whole lot of this before, let alone on a Ti84, so progress will be slow. But again, this is mostly just for me. diff --git a/screenshot.png b/screenshot.png new file mode 100644 index 0000000..4e6b639 Binary files /dev/null and b/screenshot.png differ diff --git a/src/main.c b/src/main.c new file mode 100644 index 0000000..e7d2a5c --- /dev/null +++ b/src/main.c @@ -0,0 +1,19 @@ +#include +#include +#include + +/* Main function, called first */ +int main(void) +{ + /* Clear the homescreen */ + os_ClrHome(); + + /* Print a string */ + os_PutStrFull("Hello, World."); + + /* Waits for a key */ + while (!os_GetCSC()); + + /* Return 0 for success */ + return 0; +}