Created
July 31, 2012 00:27
-
-
Save b-adams/3212268 to your computer and use it in GitHub Desktop.
CS225 Day 1 notes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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