Hi Funkheld,
I can tell your enjoying learning on here. Your tackling some pretty advanced concepts for just being a beginner here.
I have a suggestion. PICK A PROJECT. A Game, A Text Editor, A utility, A Music Player, Something that interests you and does something useful. Lay it out and start coding it. I guarantee you'll learn a lot in the process. It's the only way to put all the pieces together.
float asm...read the value with peek?
- ahenry3068
- Posts: 1131
- Joined: Tue Apr 04, 2023 9:57 pm
Re: float asm...read the value with peek?
I ordered and started learning the 6502/X16 last October.
As a plc programmer on a profession for many years, I did the mistake to totally overestimate my self.
I just thought that simple 6502 has just so few instructions, it can't be a thing.
So right from the beginning I started coding a nice game.
But soon it turned out that I stumbled upon many very basic things.
E.g. I was wondering why the conditioned branching sometimes worked and sometimes not.
It took a while to understand that the 6502 branching/ comparison assumes the values are signed.
So I stepped back and postponed the game.
And started doing very easy programs.
For assembly beginners I highly endorse the tutorial series from "The Retro Desk"
https://www.youtube.com/watch?v=gqwIzbT_WFU
I went through the whole series.
And learned very much by just understanding and tweaking the examples.
As a plc programmer on a profession for many years, I did the mistake to totally overestimate my self.
I just thought that simple 6502 has just so few instructions, it can't be a thing.
So right from the beginning I started coding a nice game.
But soon it turned out that I stumbled upon many very basic things.
E.g. I was wondering why the conditioned branching sometimes worked and sometimes not.
It took a while to understand that the 6502 branching/ comparison assumes the values are signed.
So I stepped back and postponed the game.
And started doing very easy programs.
For assembly beginners I highly endorse the tutorial series from "The Retro Desk"
https://www.youtube.com/watch?v=gqwIzbT_WFU
I went through the whole series.
And learned very much by just understanding and tweaking the examples.
- ahenry3068
- Posts: 1131
- Joined: Tue Apr 04, 2023 9:57 pm
Re: float asm...read the value with peek?
edrive wrote: ↑Sun Apr 14, 2024 3:36 pm I ordered and started learning the 6502/X16 last October.
As a plc programmer on a profession for many years, I did the mistake to totally overestimate my self.
I just thought that simple 6502 has just so few instructions, it can't be a thing.
So right from the beginning I started coding a nice game.
But soon it turned out that I stumbled upon many very basic things.
E.g. I was wondering why the conditioned branching sometimes worked and sometimes not.
It took a while to understand that the 6502 branching/ comparison assumes the values are signed.
So I stepped back and postponed the game.
And started doing very easy programs.
For assembly beginners I highly endorse the tutorial series from "The Retro Desk"
https://www.youtube.com/watch?v=gqwIzbT_WFU
I went through the whole series.
And learned very much by just understanding and tweaking the examples.
I agree with you but only to a point. I always learn something better and more thoroughly when I "have" to make it work for a project. For a project like I'm trying to sell Funkheld on I think feature creep is a good thing.
Re: float asm...read the value with peek?
We are on par. After I was half through the lessons, that "Dot Matrix" program idea came to my mind.
Now it's >200k assembly code (only counting the pure source code files). But that took 4 months.
Still need to learn many things...
Now it's >200k assembly code (only counting the pure source code files). But that took 4 months.
Still need to learn many things...
Re: float asm...read the value with peek?
Hello thanks for the information.
I know some of the c64: basic, asm.
but the x16 is a wonderful 8-bit computer/emulator.
I am very interested and the emulator is the best I have ever seen as it is very similar to the x16 hardware and can be used freely. Thanks.
Also the many people here who keep forgetting the emulator. Thanks.
and you specialists... who have a lot of specialist knowledge.
First I want to get to know a lot about the x16 that's in there.
greeting
I know some of the c64: basic, asm.
but the x16 is a wonderful 8-bit computer/emulator.
I am very interested and the emulator is the best I have ever seen as it is very similar to the x16 hardware and can be used freely. Thanks.
Also the many people here who keep forgetting the emulator. Thanks.
and you specialists... who have a lot of specialist knowledge.
First I want to get to know a lot about the x16 that's in there.
greeting
- ahenry3068
- Posts: 1131
- Joined: Tue Apr 04, 2023 9:57 pm
Re: float asm...read the value with peek?
Hangman took me May,23 --> Mar, 24 before I called it done.