diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-04-24 20:07:17 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-04-24 20:16:21 -0700 |
commit | dcfca05e08744270b3145f7906c5cd46485a4b52 (patch) | |
tree | 673e8715688bdc3990bbfe9077158e764690ec01 /cpp/070display | |
parent | 69e14325e3eaa3722766bb9706d7da5862b6ea26 (diff) | |
download | mu-dcfca05e08744270b3145f7906c5cd46485a4b52.tar.gz |
1171
Chip away at eliminating that 'pc' reference by first throwing out the most common expression that uses it: instructions[pc].
Diffstat (limited to 'cpp/070display')
-rw-r--r-- | cpp/070display | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/070display b/cpp/070display index feb16fe1..bf2ff85f 100644 --- a/cpp/070display +++ b/cpp/070display @@ -58,7 +58,7 @@ PRINT_CHARACTER_TO_DISPLAY, Recipe_number["print-character-to-display"] = PRINT_CHARACTER_TO_DISPLAY; :(before "End Primitive Recipe Implementations") case PRINT_CHARACTER_TO_DISPLAY: { - vector<int> arg = read_memory(instructions[pc].ingredients[0]); + vector<int> arg = read_memory(current_instruction().ingredients[0]); int h=tb_height(), w=tb_width(); size_t height = (h >= 0) ? h : 0; size_t width = (w >= 0) ? w : 0; @@ -88,10 +88,10 @@ Recipe_number["cursor-position-on-display"] = CURSOR_POSITION_ON_DISPLAY; case CURSOR_POSITION_ON_DISPLAY: { vector<int> row; row.push_back(Display_row); - write_memory(instructions[pc].products[0], row); + write_memory(current_instruction().products[0], row); vector<int> column; column.push_back(Display_column); - write_memory(instructions[pc].products[1], column); + write_memory(current_instruction().products[1], column); break; } @@ -101,8 +101,8 @@ MOVE_CURSOR_ON_DISPLAY, Recipe_number["move-cursor-on-display"] = MOVE_CURSOR_ON_DISPLAY; :(before "End Primitive Recipe Implementations") case MOVE_CURSOR_ON_DISPLAY: { - vector<int> row = read_memory(instructions[pc].ingredients[0]); - vector<int> column = read_memory(instructions[pc].ingredients[1]); + vector<int> row = read_memory(current_instruction().ingredients[0]); + vector<int> column = read_memory(current_instruction().ingredients[1]); Display_row = row[0]; Display_column = column[0]; tb_set_cursor(Display_column, Display_row); |