Page 7 sur 9

Re: [FR] Langage C sur ez80 - Mémo, rappels & tutoriels

Message non luPosté: 18 Mai 2017, 18:51
de Adriweb
Ah, je vois... tu n'as pas suivi les consignes ;)
Dans ton Makefile, pour la toolchain sur ton ordi, il faut que tu listes quelles libs sont utilisées, pour que le reste soit automatique (le PB le fait par lui-même en regardant le code).

Exemple par ici : https://github.com/CE-Programming/toolc ... le#L20-L22
Code: Tout sélectionner
#Add shared library names to the L varible, for instance:
# L := graphx fileioc keypadc
L := graphx

Re: [FR] Langage C sur ez80 - Mémo, rappels & tutoriels

Message non luPosté: 30 Jan 2018, 02:22
de MateoConLechuga
If you are curious about C and want to try learning it, this update was made for you!

The toolchain has been completely revamped and now uses jacobly's fasmg-ez80 tools to perform the assembling and linking stages that were once handled by the old ZDS tools. What this means:

  • You no longer need to specify shared (L=) for libraries in the makefile, they are automatically detected and added.
  • You do not need to change the debug flag in the makefile, simply use 'make debug'
  • A better map file is produced, and in debug mode a debug file is produced for later source-level debugging in CEmu
  • The movement away from closed-source third-party tools has begun, to be replaced by FOSS, which will also make LLVM integration even easier in the future.
  • The library format is easier to use and adapt/add to.
  • A few library bugs have been fixed, such as gfx_FillTriangle().

You can also use the standard stdio.h commands for interfacing with files! This includes functions such as fopen(), fputs(), fread(), etc. This leverages the shared fileioc library to make porting applications even easier.

Download links are below, happy coding!

https://github.com/CE-Programming/toolc ... ses/latest
https://github.com/CE-Programming/libra ... ses/latest

Many thanks to jacobly who contributed a significant portion in making this possible.

Re: [FR] Langage C sur ez80 - Mémo, rappels & tutoriels

Message non luPosté: 17 Nov 2019, 22:00
de edgar13
Très bon topic!
Je vais me mettre au C. (en plus ça ressemble à Java). :D

Re: [FR] Langage C sur ez80 - Mémo, rappels & tutoriels

Message non luPosté: 18 Nov 2019, 18:20
de Azerpogba
Wistaro a écrit:
3.2 - Générer des sprites & des images

En cours de rédaction

*-*-*





Euhh es que cette partie arrivera un jour?? :mmm:

Re: [FR] Langage C sur ez80 - Mémo, rappels & tutoriels

Message non luPosté: 18 Nov 2019, 18:39
de Wistaro
Azerpogba a écrit:
Wistaro a écrit:
3.2 - Générer des sprites & des images

En cours de rédaction

*-*-*





Euhh es que cette partie arrivera un jour?? :mmm:


Bientôt :)

Re: [FR] Langage C sur ez80 - Mémo, rappels & tutoriels

Message non luPosté: 18 Nov 2019, 18:41
de Azerpogba
Wistaro a écrit:
Bientôt :)



Cool :) :D

Re: [FR] Langage C sur ez80 - Mémo, rappels & tutoriels

Message non luPosté: 18 Nov 2019, 18:43
de Wistaro
Après faut aussi que j'update le tutoriel pour coller avec les dernières mises à jour de l'outil.

Re: [FR] Langage C sur ez80 - Mémo, rappels & tutoriels

Message non luPosté: 18 Nov 2019, 21:08
de edgar13
Wistaro a écrit:
Azerpogba a écrit:
Wistaro a écrit:
3.2 - Générer des sprites & des images

En cours de rédaction

*-*-*





Euhh es que cette partie arrivera un jour?? :mmm:


Bientôt :)

Je l'attends avec impatience. :D

Re: [FR] Guide du langage C sur ez80 (TI-83 PCE/ 84+CE)

Message non luPosté: 26 Mar 2021, 15:55
de edgar13
les documentations pour les bibliothèques avec un lien Github ne marchent plus.. :(

Re: [FR] Guide du langage C sur ez80 (TI-83 PCE/ 84+CE)

Message non luPosté: 26 Mar 2021, 16:58
de Adriweb
Tout est ici : https://ce-programming.github.io/toolchain/index.html
et le wiki pointe la au cas ou.