How can I lineraly learn?

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
Post Reply
ghzcrlvct
Posts: 5
Joined: Fri Oct 09, 2020 9:44 am

How can I lineraly learn?

Post by ghzcrlvct »

I have never learned something linearly troughout my journey when it comes to any CS topic, but I have recently wanted to read the Intel Architecture book, but I find that I can barely get trough it since there are too many terms, concepts, etc. that I am unaware of and it makes it really hard to go trough.

Is there some sort of easier path I can take in terms of learning? Some book I can read first in order to have an easier time getting trough the Intel manual?
User avatar
bloodline
Member
Member
Posts: 264
Joined: Tue Sep 15, 2020 8:07 am
Location: London, UK

Re: How can I lineraly learn?

Post by bloodline »

ghzcrlvct wrote:I have never learned something linearly troughout my journey when it comes to any CS topic, but I have recently wanted to read the Intel Architecture book, but I find that I can barely get trough it since there are too many terms, concepts, etc. that I am unaware of and it makes it really hard to go trough.

Is there some sort of easier path I can take in terms of learning? Some book I can read first in order to have an easier time getting trough the Intel manual?
There are no shortcuts to learning. Everything you learn will be built upon your previous learning.

That said, I find the Intel CPU architecture a headache... start with a cleaner design, MIPS is the poster boy here... if you want something with more real world application (and therefore lots of great example code) you could try the original ARM or the 68000... if you are new to CPUs in general then definitely start much simpler like the 6502.
Last edited by bloodline on Mon Oct 26, 2020 1:20 pm, edited 1 time in total.
CuriOS: A single address space GUI based operating system built upon a fairly pure Microkernel/Nanokernel. Download latest bootable x86 Disk Image: https://github.com/h5n1xp/CuriOS/blob/main/disk.img.zip
Discord:https://discord.gg/zn2vV2Su
PeterX
Member
Member
Posts: 590
Joined: Fri Nov 22, 2019 5:46 am

Re: How can I lineraly learn?

Post by PeterX »

ghzcrlvct wrote:I have never learned something linearly troughout my journey when it comes to any CS topic, but I have recently wanted to read the Intel Architecture book, but I find that I can barely get trough it since there are too many terms, concepts, etc. that I am unaware of and it makes it really hard to go trough.

Is there some sort of easier path I can take in terms of learning? Some book I can read first in order to have an easier time getting trough the Intel manual?
I'm sure there are some books which introduce important concepts and terms.
I'm not sure which books those are. I think I learned from an Assembler book. Maybe you should start application development. Because there you can learn concepts step by step. You know, algorithms, memory map, DMA, IO ports and binary logic etc. Then you can understand the Intel doc (and OS dev in general) better.

I must admit I'm not very happy with the Intel manuals, too. But I use it occasionally to look up some detail.

Greetings
Peter
User avatar
iansjack
Member
Member
Posts: 4703
Joined: Sat Mar 31, 2012 3:07 am
Location: Chichester, UK

Re: How can I lineraly learn?

Post by iansjack »

Try the AMD manuals.
sj95126
Member
Member
Posts: 151
Joined: Tue Aug 11, 2020 12:14 pm

Re: How can I lineraly learn?

Post by sj95126 »

iansjack wrote:Try the AMD manuals.
I wholeheartedly encourage this approach. Not only are the AMD manuals infinitely more readable, there are particular technical details that they state outright that the Intel manuals fail to describe clearly.
Korona
Member
Member
Posts: 1000
Joined: Thu May 17, 2007 1:27 pm
Contact:

Re: How can I lineraly learn?

Post by Korona »

Intel (and AMD) manuals are references and not meant to be read from front to back.

You don't read a dictionary from front to back either, do you?
managarm: Microkernel-based OS capable of running a Wayland desktop (Discord: https://discord.gg/7WB6Ur3). My OS-dev projects: [mlibc: Portable C library for managarm, qword, Linux, Sigma, ...] [LAI: AML interpreter] [xbstrap: Build system for OS distributions].
Post Reply