Skip to content
Snippets Groups Projects
Commit 42458f98 authored by Petr Stepan's avatar Petr Stepan
Browse files

Cerrect comments in vect-add, vect-add2, vect-inc

parent 53cfa7ac
No related branches found
No related tags found
No related merge requests found
......@@ -43,7 +43,7 @@ vect_next: // do {
.data
vect_a: // int vect_a[8] = {1, 2, 3, ...};
vect_a: // int vect_a[16] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 0};
.word 0x01
.word 0x02
.word 0x03
......@@ -61,7 +61,7 @@ vect_a: // int vect_a[8] = {1, 2, 3, ...};
.word 0x0f
.word 0x00
vect_b: // int vect_b[8] = {1, 2, 3, ...};
vect_b: // int vect_b[16] = {16, 32, 48, 64, ...};
.word 0x10
.word 0x20
.word 0x30
......@@ -79,7 +79,7 @@ vect_b: // int vect_b[8] = {1, 2, 3, ...};
.word 0xf0
.word 0x00
vect_c: // int vect_c[8];
vect_c: // int vect_c[16];
.skip 64
// Specify location to show in memory window
......
......@@ -41,7 +41,7 @@ vect_next: // do {
.data
vect_a: // int vect_a[8] = {1, 2, 3, ...};
vect_a: // int vect_a[16] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 0};
.word 0x01
.word 0x02
.word 0x03
......@@ -59,7 +59,7 @@ vect_a: // int vect_a[8] = {1, 2, 3, ...};
.word 0x0f
.word 0x00
vect_b: // int vect_b[8] = {1, 2, 3, ...};
vect_b: // int vect_b[16] = {16, 32, 48, 64, ...};
.word 0x10
.word 0x20
.word 0x30
......
......@@ -38,7 +38,7 @@ vect_next: // do {
.data
vect_a: // int vect_a[8] = {1, 2, 3, ...};
vect_a: // int vect_a[16] = {1, 2, 3, ...};
.word 0x01
.word 0x02
.word 0x03
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment