Hey folks! I want to convert AoCE to be partially written in C. Running both C and assembly is not a problem, but I still want to make it an app, and so far I had no luck doing that. My idea was first to overwrite LDCRT0 and use a custom loader. However, no matter what I try, the idea is to put app_data at the end of the code section. But... whenever using section .data, it says app_data is undefined, which basically means the macro is not called? Then I thought about writing an assembly file instead of putting it in the LDCRT0 file, but the same problem arises: app_data is not defined, unless it's put in the same section as app_create etc. But when I do that, I can't put code from other files in between...

This is my current attempt:


Code:
include 'includes/app.inc'
include 'includes/ti84pceg.inc'

AOCE_VERSION = "1.0.0"

public _main

_main:
    app_create

    ... <code> ...

    app_start "AoCE", "(C) 2021 Peter Tillema", AOCE_VERSION, 1

    ret

    section .data
    app_data


Any help would be greatly appreciated! Rewrite the CEDEV makefile? Use app.inc in another way? I'd love to hear feedback Smile
  
Register to Join the Conversation
Have your own thoughts to add to this or any other topic? Want to ask a question, offer a suggestion, share your own programs and projects, upload a file to the file archives, get help with calculator and computer programming, or simply chat with like-minded coders and tech and calculator enthusiasts via the site-wide AJAX SAX widget? Registration for a free Cemetech account only takes a minute.

» Go to Registration page
Page 1 of 1
» All times are UTC - 5 Hours
 
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum

 

Advertisement