Skip to content

Instantly share code, notes, and snippets.

@b-adams
Created July 31, 2012 00:27
Show Gist options
  • Save b-adams/3212268 to your computer and use it in GitHub Desktop.
Save b-adams/3212268 to your computer and use it in GitHub Desktop.
CS225 Day 1 notes
digraph fig1_9
{
input [label="Input devices"];
cpu [label="Central processing unit"];
memory [label="Main memory"];
output [label="Output devices"];
bus [label="System Bus"];
input->bus;
cpu->bus->cpu;
memory->bus->memory;
bus->output;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment