Amiga C Tutorial (2022)
pjhutchison.org
Amiga C Tutorial (2022)
1–10 of 39 posts
Re: Amiga C Tutorial (2022)
#2Re: Amiga C Tutorial (2022)
#3Re: Amiga C Tutorial (2022)
#4Any recommendations for AmigaOS emulators that run on Linux?
Re: Amiga C Tutorial (2022)
#5The author uses this code to dereference a pointer to a structure member:
engine = *myvehicle->enginesize;
Unless I've forgotten 30 years of C experience, I'd expect this to be: engine = myvehicle->enginesize;
But it could be some peculiarity in the Amiga compiler.Now I just wish I had the money to buy an Amiga when I was a kid :-)
Re: Amiga C Tutorial (2022)
#6Any recommendations for AmigaOS emulators that run on Linux?
Re: Amiga C Tutorial (2022)
#7This is the resource page I wished I had growing up. I learned it anyway, but in spite and henceforth poorly. Author should publish this content as a book. I'd buy it.
Re: Amiga C Tutorial (2022)
#8Is it me or is there a bug with pointers on the bottom of http://www.pjhutchison.org/tutorial/pointers.html ? The author uses this code to dereference a pointer to a structure member: engine = *myvehicle->enginesize; Unless I've forgotten 30 years of C experience, I'd expect this to be: engine = myvehicle->enginesize; But it could be some peculiarity in the Amiga compiler. Now I just wish I had the money to buy an Am…
Re: Amiga C Tutorial (2022)
#9Is it me or is there a bug with pointers on the bottom of http://www.pjhutchison.org/tutorial/pointers.html ? The author uses this code to dereference a pointer to a structure member: engine = *myvehicle->enginesize; Unless I've forgotten 30 years of C experience, I'd expect this to be: engine = myvehicle->enginesize; But it could be some peculiarity in the Amiga compiler. Now I just wish I had the money to buy an Am…
It's also assigning string literals to char array struct members in a non-initializing context, which doesn't work.
As someone trying to piece together C knowledge from various b0rk3n tutorials (as a pre-Internet teenager in the early 90s) it's pretty provocative. Luckily I healed and levelled up since.