Initial commit

This commit is contained in:
That-One-Nerd 2025-06-25 00:32:58 -04:00
commit 72cbed8182
6 changed files with 46 additions and 0 deletions

7
.gitignore vendored Normal file
View File

@ -0,0 +1,7 @@
obj/
bin/
src/gfx/*.c
src/gfx/*.h
src/gfx/*.8xv
.DS_Store
convimg.yaml.lst

BIN
icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 761 B

15
makefile Normal file
View File

@ -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)

5
readme.md Normal file
View File

@ -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.

BIN
screenshot.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 951 B

19
src/main.c Normal file
View File

@ -0,0 +1,19 @@
#include <ti/screen.h>
#include <ti/getcsc.h>
#include <stdlib.h>
/* 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;
}