FactChecker's latest activity
-
FactChecker reacted to Mark44's post in the thread Learning Assembly and computer architecture for x86 with
Informative.
No, nothing like that. You don't have to keep track of time. That sounds more like low-level real-time programming, as a guess. I don't... -
FactChecker replied to the thread Learning Assembly and computer architecture for x86.I got the (maybe incorrect) impression that RISC programming was harder when there was a great shortage of RISK programmers. Maybe the... -
FactChecker reacted to Mark44's post in the thread Learning Assembly and computer architecture for x86 with
Like.
RISC (reduced instruction set computing) instruction sets are smaller than those for CISC (complex instruction set computing), which is... -
FactChecker replied to the thread Learning Assembly and computer architecture for x86.To be more precise, an assembly language is matched to the architecture that it runs on. Different architecture has a different assembly... -
FactChecker replied to the thread Learning Assembly and computer architecture for x86.I think the difference between RISK versus CISK is more significant than that. -
FactChecker reacted to Mark44's post in the thread Learning Assembly and computer architecture for x86 with
Like.
You are mistaken here. Different architectures have different assembly languages. Sometimes there even are different versions of an... -
FactChecker reacted to sbrothy's post in the thread Learning Assembly and computer architecture for x86 with
Like.
I think firmware is more @FactChecker ‘s alley. I’d call a device driver firmware. Anything that interfaces to hardware. -
FactChecker reacted to Mark44's post in the thread Learning Assembly and computer architecture for x86 with
Informative.
Visual Studio doesn't permit inline assembly (i.e., using the asm keyword) in 64-bit code. The example I showed was compiled as 32-bit... -
FactChecker reacted to sbrothy's post in the thread Learning Assembly and computer architecture for x86 with
Like.
Indeed, assembly language isn't known for being funny and a breeze to work with. And as for speeding things up in this day and age... -
FactChecker replied to the thread Learning Assembly and computer architecture for x86.How much you will use assembly language depends on what type of work you do. If you get into real-time device handlers, you will see it... -
FactChecker reacted to Mark44's post in the thread Learning Assembly and computer architecture for x86 with
Like.
Here's a simple example of what I mean by mixed-language programming. Below is the high-level part in C. // Driver.cpp : Call an... -
FactChecker replied to the thread Learning Assembly and computer architecture for x86.If you go back far enough, IBM dominated. I "learned" assembly language in a college class that was 75% IBM employees. There was no real... -
FactChecker reacted to Rive's post in the thread Learning Assembly and computer architecture for x86 with
Like.
It is just that But using assembly in a sophisticated OS environment or within a C code is more about interacting with the framework... -
FactChecker reacted to sbrothy's post in the thread Learning Assembly and computer architecture for x86 with
Like.
I’m playing devil’s advocate for the OP here when I say that talking to the chip directly using assembler is a wonderful way to discover... -
FactChecker replied to the thread Learning Assembly and computer architecture for x86.If you really want to learn assembly code, then do it. Even for a high-level, professional programmer there are occasions to insert...