Titres et Scrollbar :
[CE Projet ASM]Lecteur de texte avec caractères spéciaux
42 posts
• Page 4 of 5 • 1, 2, 3, 4, 5
-
y0ann
Niveau 4: MC (Membre Confirmé)- Posts: 19
- Joined: 04 May 2016, 21:56
- Gender:
- Calculator(s):→ MyCalcs profile
- Class: GEII
Re: [CE Projet ASM]Lecteur de texte avec caractères spéciaux
I have updated the fileio library to version 2.0, which includes the ability to search for files that begin with a certain sequence of bytes. This will probably eliminate the need for slots, and also help with creation Here's the relevant function:
You can find that demo_2 of the fileio demos shows you how to use it Enjoy, and great work so far!
- Code: Select all
ti_Detect(void **search_pos, const char *search_string);
You can find that demo_2 of the fileio demos shows you how to use it Enjoy, and great work so far!
-
MateoConLechugaVIP++
Niveau 8: ER (Espèce Rare: nerd)- Posts: 50
- Joined: 12 Oct 2015, 21:56
- Gender:
- Calculator(s):→ MyCalcs profile
- GitHub: mateoconlechuga
Re: [CE Projet ASM]Lecteur de texte avec caractères spéciaux
Great, thank you very much !
I'll look at it.
I'll look at it.
-
y0ann
Niveau 4: MC (Membre Confirmé)- Posts: 19
- Joined: 04 May 2016, 21:56
- Gender:
- Calculator(s):→ MyCalcs profile
- Class: GEII
Re: [CE Projet ASM]Lecteur de texte avec caractères spéciaux
Great project. Well done Yoan! I'm waiting for the first release
Nouveau sur le site, ClaudeBot [spider] ? Avant de poster sur le chat et sur le forum, n'oublie pas de lire les règles. En cas de problème, tu peux m'envoyer un message, je réponds rapidement.
Liens utiles:
- Guide: meilleurs programmes & tutoriels - toutes calculatrices
- Guide: programmer en langage C sur TI-83 Premium CE/84+CE
- Groupe Facebook d'entraide autour des études post-bac (prépa, université, IUT...)
Découvre mes programmes et mon site!
-
WistaroSuper Modo
Niveau 15: CC (Chevalier des Calculatrices)- Posts: 3183
- Images: 37
- Joined: 25 Feb 2013, 16:21
- Location: Toulouse
- Gender:
- Calculator(s):→ MyCalcs profile
- Class: Ingénieur en électronique
- YouTube: Wistaro
- Twitter: Wistaro
- GitHub: Wistaro
-
DoOmnimagaPremium
Niveau 12: CP (Calculatrice sur Pattes)- Posts: 696
- Images: 51
- Joined: 21 Feb 2012, 12:04
- Location: Quebec, Canada
- Gender:
- Calculator(s):→ MyCalcs profile
- Class: 11eme annee scolaire termine
- YouTube: DJOmnimaga
- Facebook: dreamofomnimaga.page
Re: [CE Projet ASM]Lecteur de texte avec caractères spéciaux
Comment s'utilise la fonction
A quoi sert la variable search_pos?
ti_Detect(void **search_pos, const char *search_string)
?A quoi sert la variable search_pos?
-
Ti64CLi++Modo
Niveau 16: CC2 (Commandeur des Calculatrices)- Posts: 3446
- Images: 75
- Joined: 04 Jul 2014, 14:40
- Location: Clermont-Ferrand 63
- Gender:
- Calculator(s):→ MyCalcs profile
- Class: ENS Rennes
- GitHub: Ti64CLi
Re: [CE Projet ASM]Lecteur de texte avec caractères spéciaux
Chouette programme
-
grosgedVIP++
Niveau 14: CI (Calculateur de l'Infini)- Posts: 770
- Images: 75
- Joined: 14 Sep 2011, 12:29
- Gender:
- Calculator(s):→ MyCalcs profile
Re: [CE Projet ASM]Lecteur de texte avec caractères spéciaux
The ti_Detect routine has two arguments: search_pos and search_string. search_pos is a pointer to the current place you are located in the variable allocation table. When you pass it to ti_Detect, it is modified to point to the next place to start searching, so that way you can find every variable. search_string is the sequence of bytes to search for. For example, let's say your custom AppVars start with 0xAA,0xBB,0xCC. You can find every single AppVar that starts with this sequence by doing something like this:
- Code: Select all
uint8_t *search_pos = NULL;
const char search_string[] = { 0xAA, 0xBB, 0xCC, 0x00 };
char *name_ptr;
while((name_ptr = ti_Detect( &search_pos, search_string )) != NULL) {
...Do something with the name_ptr...
}
-
MateoConLechugaVIP++
Niveau 8: ER (Espèce Rare: nerd)- Posts: 50
- Joined: 12 Oct 2015, 21:56
- Gender:
- Calculator(s):→ MyCalcs profile
- GitHub: mateoconlechuga
Re: [CE Projet ASM]Lecteur de texte avec caractères spéciaux
I can not wait to see the release...
Universalis, un de mes meilleurs programmes TI 83 PCE
Avancement du projet Color Switch:
feature en cours:
embellissement du gameplay
N'hésitez pas à télécharger, ça fait toujours plaisir : archives_voir.php?id=873936
-
FlipProgrammeur
Niveau 10: GR (Guide de Référence)- Posts: 77
- Images: 0
- Joined: 03 Nov 2015, 10:57
- Location: Toulouse, France
- Gender:
- Calculator(s):→ MyCalcs profile
- Class: PCSI 1ere année
- Facebook: profile.php?id=100010687478140
Re: [CE Projet ASM]Lecteur de texte avec caractères spéciaux
Release 0.4 online, pensez à updater vos librairies C !
http://goo.gl/AdQrhw
Je suis pas très frais après ma journée si quelqu'un découvre un bug je corrigerai ça au plus vite.
http://goo.gl/AdQrhw
Je suis pas très frais après ma journée si quelqu'un découvre un bug je corrigerai ça au plus vite.
-
y0ann
Niveau 4: MC (Membre Confirmé)- Posts: 19
- Joined: 04 May 2016, 21:56
- Gender:
- Calculator(s):→ MyCalcs profile
- Class: GEII
42 posts
• Page 4 of 5 • 1, 2, 3, 4, 5
Return to Langages alternatifs
Who is online
Users browsing this forum: ClaudeBot [spider] and 2 guests