π
<-

Web IDE for Nspire development

C, C++, ASM...

Web IDE for Nspire development

Unread postby nspiredev500 » 27 Mar 2022, 20:57

I'm starting a new project, porting the Ndless toolchain to webassembly, improving the firebird emscripten port, making a TI Lua API emulator and assembling all that into a web IDE that runs completely in the browser.

I started to port the toolchain, "arm-none-eabi-ld -v" works in webassembly, I don't know if the actual linking works yet. Also cross-compiling from x86_64 to webassembly with a target of arm-none-eabi is kind of complicated.

I'll also probably have to let GCC emit assembly files, since you can't fork and call binutils in webassembly....

Also on my list are improvements to Ndless, like dynamic linking, ELF and dlopen() support, but that is a topic for another day.

I'll post progress updates in this thread.
User avatar
nspiredev500
Niveau 4: MC (Membre Confirmé)
Niveau 4: MC (Membre Confirmé)
Level up: 16%
 
Posts: 17
Joined: 03 Jul 2020, 12:22
Gender: Not specified
Calculator(s):
MyCalcs profile
GitHub: nspiredev500

Re: Web IDE for Nspire development

Unread postby Adriweb » 27 Mar 2022, 21:08

Interesting idea :)

Have you thought about contributing this effort to TI-Planet's open source Project Builder? It could be a module just like the CE C/C++ toolchain :

See: https://tiplanet.org/pb
Source code (which I need to update): https://github.com/TI-Planet/Project-Builder

MyCalcs: Help the community's calculator documentations by filling out your calculators info!
MyCalcs: Aidez la communauté à documenter les calculatrices en donnant des infos sur vos calculatrices !
Inspired-Lua.org: All about TI-Nspire Lua programming (tutorials, wiki/docs...)
My calculator programs
Mes programmes pour calculatrices
User avatar
AdriwebAdmin
Niveau 16: CC2 (Commandeur des Calculatrices)
Niveau 16: CC2 (Commandeur des Calculatrices)
Level up: 79.7%
 
Posts: 14820
Images: 1131
Joined: 01 Jun 2007, 00:00
Location: France
Gender: Male
Calculator(s):
MyCalcs profile
Twitter: adriweb
GitHub: adriweb

Re: Web IDE for Nspire development

Unread postby Lionel Debroux » 27 Mar 2022, 21:10

That's quite an ambitious set of goals :)

A single note so far:
Also on my list are improvements to Ndless, like dynamic linking, ELF and dlopen() support, but that is a topic for another day.

Watch out, there's a very good reason why Ndless goes through genzehn for generating final binaries targeting the calculator, instead of using ELF on both the computer side as a work format and the calculator side: the sheer bloat thereof, be it for the generated programs or for the ELF loader itself, to a lesser extent. It was attempted before, but the results are often poor to terrible: in some circumstances, very simple ELF programs can swell to dozens of KBs. That's not acceptable, and this is the reason why ELF never went beyond the prototype stage for the Nspire series (on the calculator side, again).
bFLT supports dynamic linking but has the annoying limitation of a maximum of 254 shared libraries. See https://blog.tangrs.id.au/2012/04/07/bf ... ion-notes/ .
Membre de la TI-Chess Team.
Co-mainteneur de GCC4TI (documentation en ligne de GCC4TI), TIEmu et TILP.
User avatar
Lionel DebrouxSuper Modo
Niveau 14: CI (Calculateur de l'Infini)
Niveau 14: CI (Calculateur de l'Infini)
Level up: 11.3%
 
Posts: 6869
Joined: 23 Dec 2009, 00:00
Location: France
Gender: Male
Calculator(s):
MyCalcs profile
Class: -
GitHub: debrouxl

Re: Web IDE for Nspire development

Unread postby nspiredev500 » 27 Mar 2022, 21:23

Adriweb wrote:Interesting idea :)

Have you thought about contributing this effort to TI-Planet's open source Project Builder? It could be a module just like the CE C/C++ toolchain :

See: https://tiplanet.org/pb
Source code (which I need to update): https://github.com/TI-Planet/Project-Builder


Cool, I didn't know that was a thing. That way I don't even have to make a custom website layout or code editor :) .

Lionel Debroux wrote:That's quite an ambitious set of goals :)

A single note so far:
Also on my list are improvements to Ndless, like dynamic linking, ELF and dlopen() support, but that is a topic for another day.

Watch out, there's a very good reason why Ndless goes through genzehn for generating final binaries targeting the calculator, instead of using ELF on both the computer side as a work format and the calculator side: the sheer bloat thereof, be it for the generated programs or for the ELF loader itself, to a lesser extent. It was attempted before, but the results are poor to terrible: in some circumstances, very simple ELF programs can swell to dozens of KBs. That's not acceptable.
bFLT supports dynamic linking but has the annoying limitation of a maximum of 254 shared libraries. See https://blog.tangrs.id.au/2012/04/07/bf ... ion-notes/ .


For the projects that I made the ELF object file was always very small, because newlib and other libraries weren't included. To make the size difference smaller I want to support compressed ELF files, like ZEHN is compressed. Also static linking on the calculator directly in memory removes the need to include newlib on the ELF file, but would make the linker itself larger. If using ELF proves impractical, I'll make an updated version of ZEHN. Thankfully versioning support is included in ZEHN, so backwards compatibility can be kept.
User avatar
nspiredev500
Niveau 4: MC (Membre Confirmé)
Niveau 4: MC (Membre Confirmé)
Level up: 16%
 
Posts: 17
Joined: 03 Jul 2020, 12:22
Gender: Not specified
Calculator(s):
MyCalcs profile
GitHub: nspiredev500

Re: Web IDE for Nspire development

Unread postby Lionel Debroux » 27 Mar 2022, 21:26

An improved version of Zehn is probably the way to go, indeed. You should discuss with Vogtinator :)
Membre de la TI-Chess Team.
Co-mainteneur de GCC4TI (documentation en ligne de GCC4TI), TIEmu et TILP.
User avatar
Lionel DebrouxSuper Modo
Niveau 14: CI (Calculateur de l'Infini)
Niveau 14: CI (Calculateur de l'Infini)
Level up: 11.3%
 
Posts: 6869
Joined: 23 Dec 2009, 00:00
Location: France
Gender: Male
Calculator(s):
MyCalcs profile
Class: -
GitHub: debrouxl

Re: Web IDE for Nspire development

Unread postby nspiredev500 » 28 Mar 2022, 13:23

How can I contact him? I only know his Github, and that doesn't allow messages, and couldn't find him here. Or should I just create an issue in the Ndless repo?
User avatar
nspiredev500
Niveau 4: MC (Membre Confirmé)
Niveau 4: MC (Membre Confirmé)
Level up: 16%
 
Posts: 17
Joined: 03 Jul 2020, 12:22
Gender: Not specified
Calculator(s):
MyCalcs profile
GitHub: nspiredev500

Re: Web IDE for Nspire development

Unread postby Adriweb » 28 Mar 2022, 13:32

On IRC, #ndless-dev of the EFNet server, for quick chats, but maybe a GitHub issue would be better indeed

MyCalcs: Help the community's calculator documentations by filling out your calculators info!
MyCalcs: Aidez la communauté à documenter les calculatrices en donnant des infos sur vos calculatrices !
Inspired-Lua.org: All about TI-Nspire Lua programming (tutorials, wiki/docs...)
My calculator programs
Mes programmes pour calculatrices
User avatar
AdriwebAdmin
Niveau 16: CC2 (Commandeur des Calculatrices)
Niveau 16: CC2 (Commandeur des Calculatrices)
Level up: 79.7%
 
Posts: 14820
Images: 1131
Joined: 01 Jun 2007, 00:00
Location: France
Gender: Male
Calculator(s):
MyCalcs profile
Twitter: adriweb
GitHub: adriweb


Return to Native: Ndless, Linux, ...

Who is online

Users browsing this forum: ClaudeBot [spider] and 2 guests

-
Search
-
Social TI-Planet
-
Featured topics
Comparaisons des meilleurs prix pour acheter sa calculatrice !
"1 calculatrice pour tous", le programme solidaire de Texas Instruments. Reçois gratuitement et sans aucune obligation d'achat, 5 calculatrices couleur programmables en Python à donner aux élèves les plus nécessiteux de ton lycée. Tu peux recevoir au choix 5 TI-82 Advanced Edition Python ou bien 5 TI-83 Premium CE Edition Python.
Enseignant(e), reçois gratuitement 1 exemplaire de test de la TI-82 Advanced Edition Python. À demander d'ici le 31 décembre 2024.
Aidez la communauté à documenter les révisions matérielles en listant vos calculatrices graphiques !
1234
-
Donations / Premium
For more contests, prizes, reviews, helping us pay the server and domains...
Donate
Discover the the advantages of a donor account !
JoinRejoignez the donors and/or premium!les donateurs et/ou premium !


Partner and ad
Notre partenaire Jarrety Calculatrices à acheter chez Calcuso
-
Stats.
1053 utilisateurs:
>1027 invités
>19 membres
>7 robots
Record simultané (sur 6 mois):
6892 utilisateurs (le 07/06/2017)
-
Other interesting websites
Texas Instruments Education
Global | France
 (English / Français)
Banque de programmes TI
ticalc.org
 (English)
La communauté TI-82
tout82.free.fr
 (Français)