mirror of
https://github.com/soconnor0919/eceg431.git
synced 2025-12-11 22:54:43 -05:00
Simplify comments to be more concise and student-like
- Removed verbose explanations - Made comments shorter and more casual - Focus on key concepts rather than formal descriptions
This commit is contained in:
@@ -12,7 +12,7 @@ CHIP And16 {
|
||||
OUT out[16];
|
||||
|
||||
PARTS:
|
||||
// Apply And gate to each of the 16 bits
|
||||
// And each bit
|
||||
And(a=a[0], b=b[0], out=out[0]);
|
||||
And(a=a[1], b=b[1], out=out[1]);
|
||||
And(a=a[2], b=b[2], out=out[2]);
|
||||
|
||||
Reference in New Issue
Block a user