Skip to content

Commit

Permalink
Add package statement for Java classes. Except those Lucas is working…
Browse files Browse the repository at this point in the history
… now.
  • Loading branch information
silveira committed Feb 13, 2012
1 parent 0796115 commit 09046df
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/cactus/ArithmeticLogicUnit.java
@@ -1,4 +1,5 @@
package cactus;

public class ArithmeticLogicUnit implements Unit {

}

2 changes: 2 additions & 0 deletions src/cactus/ControlUnit.java
@@ -1,3 +1,5 @@
package cactus;

public class ControlUnit implements Unit {

}
Expand Down
2 changes: 2 additions & 0 deletions src/cactus/Memory.java
@@ -1,3 +1,5 @@
package cactus;

public class Memory {

}
Expand Down
2 changes: 2 additions & 0 deletions src/cactus/MemoryUnit.java
@@ -1,3 +1,5 @@
package cactus;

public class MemoryUnit implements Unit {

}
Expand Down
2 changes: 2 additions & 0 deletions src/cactus/Register.java
@@ -1,3 +1,5 @@
package cactus;

public abstract class Register {

}
Expand Down
2 changes: 2 additions & 0 deletions src/cactus/Register16.java
@@ -1,3 +1,5 @@
package cactus;

public class Register16 extends Register {

}
Expand Down
2 changes: 2 additions & 0 deletions src/cactus/Register4.java
@@ -1,3 +1,5 @@
package cactus;

public class Register4 extends Register {

}
Expand Down
2 changes: 2 additions & 0 deletions src/cactus/Unit.java
@@ -1,3 +1,5 @@
package cactus;

public interface Unit {

}
Expand Down

0 comments on commit 09046df

Please sign in to comment.