Token bus algorithm with 8086 (Assembly)

Thread Starter

Beef_Stroganoff

Joined Apr 22, 2021
8
Hello everyone!

I have to write the x86 Assembly code for a token bus algorithm with multiple nodes (intel 8086 cpus), but i don't know where to begin. It's been a long time since i used x86 Assembly, is there an online translator of some sort? How could i begin this project?

Thank you !
 

Papabravo

Joined Feb 24, 2006
21,157
A translator from what to what? There are few if any shortcuts available to you. I suppose you could write C-code and then route the assembly code through the assembler, but then how would you debug code you had not written.
 

Thread Starter

Beef_Stroganoff

Joined Apr 22, 2021
8
A translator from what to what? There are few if any shortcuts available to you. I suppose you could write C-code and then route the assembly code through the assembler, but then how would you debug code you had not written.
A translator from C to Assembly. I could write it in Assembly, but i can't find any resources online as to how could i program this algorithm..
 

MrChips

Joined Oct 2, 2009
30,706
Your first effort would be to write out the algorithm as a flowchart or pseudo code, independent of the computer programming language.
 
Top