Initial commit
This commit is contained in:
commit
72cbed8182
7
.gitignore
vendored
Normal file
7
.gitignore
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
obj/
|
||||||
|
bin/
|
||||||
|
src/gfx/*.c
|
||||||
|
src/gfx/*.h
|
||||||
|
src/gfx/*.8xv
|
||||||
|
.DS_Store
|
||||||
|
convimg.yaml.lst
|
||||||
15
makefile
Normal file
15
makefile
Normal 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
5
readme.md
Normal 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
BIN
screenshot.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 951 B |
19
src/main.c
Normal file
19
src/main.c
Normal 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;
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user