Although my repetitive actions may look similar, I AM NOT A BOT!!! :tongue:
And sometimes I repeat myself. It is not a glitch in my software. Hello World of Masm32.
Hi biscuits, welcome to the forum :thup:
Hello jj2077. Thank you for the greeting.
I am not new to assembly programming, but at the same time nowhere near being a professional programmer. I guess hobby programmer would be more fitting. I first learnt assembly by inspecting executables in ollydbg. I was curious as to how programs were made. So I looked at the insides of some programs. My first program was a "Hello World" message box coded in ollydbg :tongue:. I normally use 32 bit, but never have used 16 bit. 16 bit code looks kind of complicated. 64 bit code looks weird compared to 32 bit code. Seems more complex, especially the procedures. Stack frame, argument handling, local variables, register saving, and the like. 32 bit code seems way easier than both 64 bit and 16 bit.
Hello biscuits,
Welcome to the forum.
Quote from: Vortex on January 03, 2023, 05:26:16 AM
Hello biscuits,
Welcome to the forum.
Thank you Vortex!
Hi biscuits
Welcome to the forum :cool:
Biterider
thanks biterider!
biscuits,
welcome to the forum. I wish you a lot of fun and of course success in programming.
Gunther
Thank you Gunther!
biscuits,
Quote from: biscuits on January 03, 2023, 04:34:22 AM
I normally use 32 bit, but never have used 16 bit. 16 bit code looks kind of complicated. 64 bit code looks weird compared to 32 bit code. Seems more complex, especially the procedures. Stack frame, argument handling, local variables, register saving, and the like. 32 bit code seems way easier than both 64 bit and 16 bit.
that's correct. 16 bit code is only for dinosaurs like me. You shouldn't invest any effort in this at the moment. The future clearly lies with 64 bit code. Hutch has made some very good
videos on this that you should check out. I would start with that (http://masm32.com/board/index.php?topic=9177.msg100733#msg100733) if I were in your shoes.
Quote from: Gunther on January 03, 2023, 01:54:35 PM
The future clearly lies with 64 bit code.
I'll take this into consideration. Thank you.
Welcome Biscuits :thumbsup:
When it comes to max speed,SIMD and SIMT is future
That's my way,but if you stick to make very fast one thread asm program on cpu with 32 cores =100/32 cpu usage =3%
@Gunther 16bit dos it's more of a challenge than 32/64 bit
Quote from: biscuits on January 03, 2023, 04:34:22 AM
Hello jj2077. Thank you for the greeting.
I am not new to assembly programming, but at the same time nowhere near being a professional programmer. I guess hobby programmer would be more fitting.
...
32 bit code seems way easier than both 64 bit and 16 bit.
Don't worry, we are all hobby programmers here (and the median age is probably above 60 years :biggrin:).
Yes, 32-bit code is easier, but 64-bit code isn't rocket science, either. The question is whether you really need it. Speedwise, it's the same, so the only real advantage is an address space beyond the 2GB of 32-bit code.
Quote from: jj2007 on January 03, 2023, 11:02:57 PM
Yes, 32-bit code is easier, but 64-bit code isn't rocket science, either. The question is whether you really need it
32 bit code so far does everything I need. There will undoubtedly be instances where 64 bit would be better suited for a particular project that I plan on.
biscuits,
Quote from: biscuits on January 04, 2023, 05:00:51 AM
32 bit code so far does everything I need. There will undoubtedly be instances where 64 bit would be better suited for a particular project that I plan on.
there are of course other advantages besides the extended address space of 64 compared to 32 bit. Not only the width, but also the number of registers is dramatically higher. This applies to both
integer and floating point registers. In many cases, this makes it possible to simply keep temporary results inside the processor; that can speed up some algorithms considerably. Especially in this
direction, there is still a lot of uncharted territory that needs to be discovered. You can let off steam there.
Quote from: Gunther on January 04, 2023, 05:18:13 AM
... there is still a lot of uncharted territory that needs to be discovered. You can let off steam there.
:biggrin: