π -> 10/23: C to Assembly
π€ 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
π -> Links
Resources
- Put useful links here
Connections
- Link all related words