NewRetroVagina23
kiwifarms.net
- Joined
- Sep 21, 2021
This is the only correct answer.God didn't code the universe; he was the project manager. King Terry coded the universe in HolyC.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
This is the only correct answer.God didn't code the universe; he was the project manager. King Terry coded the universe in HolyC.
Learning MIPS in my computer architecture class was very interesting. My group even made a MIPS emulator. Also cool to know PS1 and PS2 CPU was MIPS based.MIPS assembly, just like God's dad intended.
Pictured: a young God polishing a Halo array in his dads workshop.
View attachment 3027994
MIPS is a mishmash of strange architectural decisions that don't really make sense, for example full width 32 bit instructions and delay slots. However I guess with any once popular architecture, there's still millions of devices floating around out there so it's worthwhile to be familiar with. A lot of universities start with MIPS when Z80 or MOS 6502 would be good starting points too. Both were invented almost fifty years ago and probably billions of them are still in use.Learning MIPS in my computer architecture class was very interesting. My group even made a MIPS emulator. Also cool to know PS1 and PS2 CPU was MIPS based.
Couldn't a delay slot be used as a kind of user definable OoE in a strange way? What's up with full width 32bit instructions?MIPS is a mishmash of strange architectural decisions that don't really make sense, for example full width 32 bit instructions and delay slots. However I guess with any once popular architecture, there's still millions of devices floating around out there so it's worthwhile to be familiar with. A lot of universities start with MIPS when Z80 or MOS 6502 would be good starting points too. Both were invented almost fifty years ago and probably billions of them are still in use.
@AmpleApricots can probably elaborate on this further, but delay slots were a possible optimization I guess for loading instructions that turned out to not be useful. Since MIPS is 32 bit, instructions that are word aligned are much easier to decode ahead of time, but at the expensive of wasting a lot of bits in terms of instruction density. Well my guess is that throughput and cache sizes are so important that it's worth having more complicated instruction decoding for packing more instructions into one space. IIRC Intel Core era processors had four distinct instruction decoder units. I'm not really knowledgeable in this area but it is an interest for me.Couldn't a delay slot be used as a kind of user definable OoE in a strange way? What's up with full width 32bit instructions?
No he coded the pajeets in Java, the niggers got coded in PythonHe coded niggers in Java
Delay slots exist because of the instruction pipeline. MIPS was designed to run up to one instruction per cycle, but since instructions may need multiple cycles, their execution times will overlap. A jump or branch instruction won't finish by the time the next instruction has already begun to execute. This problem affects all pipelined CPUs to some degree. Intel solved this issue in their first pipelined x86 CPU (the 486) by simply waiting (stalling the pipeline) on (conditional) branch instructions, which naturally imposes a performance penalty. Modern CPUs do branch prediction (and roll back the results if they guess wrong) or speculative execution (they execute both branches and discard the results from the branch that ended up not being taken).MIPS is a mishmash of strange architectural decisions that don't really make sense, for example full width 32 bit instructions and delay slots. However I guess with any once popular architecture, there's still millions of devices floating around out there so it's worthwhile to be familiar with. A lot of universities start with MIPS when Z80 or MOS 6502 would be good starting points too. Both were invented almost fifty years ago and probably billions of them are still in use.