πŸ“— -> 10/23: C to Assembly


Lecture Slide Link

🎀 Vocab

❗ Unit and Larger Context

Small summary

βœ’οΈ -> Scratch Notes

C to Assembly:

Array Access:

Ar[i + 3] = 55
=== // C Equivalent
*(Ar + i + 3) 
// Ar: constant
// 3: constant
// I: not constant
=== // In assembly
Movb $55, Ar+3*1(,%ecx,1)

Review the β€œDon’t do this even though I know you will” slide

πŸ§ͺ-> Example

  • List examples of where entry contents can fit in a larger context

Resources

  • Put useful links here

Connections

  • Link all related words