Anyone know ASM?

Conne

New member
Joined
Jun 28, 2024
Messages
3
Points
1
Not going to say a whole lot in case nobody has any idea what ASM is, but if you do, anyone work with ASM? Either reverse engineering, modifying programs, or writing code of some sort? I'd be curious to know so please post!
 

Lauren

New member
Joined
Jun 28, 2024
Messages
3
Points
1
Assembly is tons of fun, but once you step into real-deal deep pipelines and multiple core execution models you start to realize that some things are best left to the compiler. Even a 4~8 stage pipe can destroy your execution times if you end up with a data hazard or a lock in the middle of a loop. A little bit of knowledge is a dangerous thing...

Most of my work gets done in C these days.
 
Top