DGivney / assemblytutorials

This project was put together to teach myself NASM x86 assembly language on linux.
https://asmtutor.com/
654 stars 117 forks source link

Fixed a typo in Lesson 9 #41

Closed tryhardsnipehrd closed 1 year ago

tryhardsnipehrd commented 2 years ago

Line 1092, which is Lesson 9 of the page, had a small mistake, stating EBX will be loaded with the file we want to write to – in this case STDIN. This is not the case, and is instead ... we want to ***read from***... This just fixes the issue, and hopefully clears up any misunderstandings stemming from it.

DGivney commented 1 year ago

Hey tryhardsnipehrd, thanks for this pull request.

I'll update it on the site now.