CS 211: Introduction to Computer Architecture

Spring 2025 with Minesh Patel (Sections 5-8)

Welcome to CS 211! This is the first required systems course for all Rutgers CS majors and builds a foundation for the rest of the curriculum.

Quick Links

Announcements

Contacting Us

Your two best ways to contact us:

  1. Post on the Ed discussion forum (preferred): posting publicly (or even privately) will ensure you receive a timely response.
  2. E-Mail the instructional staff mailing list: automatically broadcasts to all instructional staff.

Attempting to contact individual staff members will likely delay any response you may receive.

Overview

We will study the fundamentals of how computers work, including the software/hardware interface and key hardware components, such as the processor and memory hierarchy. For example, we will explore questions such as: This course will provide a new and holistic way to think about programming, software, and what it means to run code. Exposure to these fundamentals is essential to becoming a well-rounded computer scientist. This is an assignment-heavy course with an emphasis on low-level systems programming. We will primarily program in C and RISC-V assembly because both are excellent teaching tools for understanding how the hardware works. This course is roughly divided into four main topics:
  1. C Programming in Linux. The C programming language. The Linux command-line (shell) environment. Standard libraries. Programming tools: compilers, build systems, debuggers, version control tools. Understanding requirements and exploring design choices. Writing clean code. Students will write C programs in a Linux shell environment and integrate them into pre-existing modules such as test harnesses and simulators.
  2. Representing and manipulating data. Binary encodings of, and basic operations on, basic data types: integers, floating-point numbers, characters, Unicode, and UTF-8. Derived data types: arrays, structures, unions, functions, pointers. Data alignment.
  3. Machine-level representation of programs. Machine-level encoding and execution of programs written in high-level programming languages. The RISC-V RV64I instruction set architecture (ISA). Data access instructions, arithmetic and logical operations, non-sequential control transfer, procedure call/return. Stack and heap disciplines for memory management. Code generation for C constructs. Techniques for explicit memory management.
  4. Processor organization and architecture. Basics of hardware logic. Single-cycle CPU implementation of the RV64I ISA. Memory hierarchy. Structure and behavior of caches. Memory performance.
This course is dense, fast, and a lot of work. You will be expected to pick up concepts quickly and independently, and falling behind is a real danger, especially if you skip class and recitation. Please be proactive about learning and leverage all available resources to succeed!