Skip to content

Commit 56d7c2e

Browse files
Stable Build v0.02S
1 parent 558f47d commit 56d7c2e

9 files changed

Lines changed: 2087 additions & 41 deletions

File tree

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ case "$option" in
3333

3434
;;
3535

36-
"rrlease"|"RELEASE")
36+
"release"|"RELEASE")
3737
echo "Building Release uVR_AT89S52 $VERSION : "
3838

3939
mkdir -p "${RELEASE}${VERSION}"/

build/v0.0213.29.26/uvr_build.hex

Lines changed: 509 additions & 0 deletions
Large diffs are not rendered by default.

build/v0.0213.29.58/uvr_build.hex

Lines changed: 505 additions & 0 deletions
Large diffs are not rendered by default.

build/v0.0213.32.53/uvr_build.hex

Lines changed: 508 additions & 0 deletions
Large diffs are not rendered by default.

build/v0.0213.45.01/uvr_build.hex

Whitespace-only changes.

include/uvr_const.h

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,13 @@ __code static char program_entered_msg[57] = "\033[0mProgram loaded in memory, u
7272

7373
#define len_running_program_msg 35
7474
__code static char running_program_msg[35] = "\033[33mExecuting script at runtime\r\n";
75+
76+
77+
#define len_prog_erased 18
78+
__code static char program_erased_msg[18] = "Program Erased!\r\n";
79+
80+
81+
7582
//================================= System Definitions ==================================
7683

7784
#define supported_ansi_color_operands 0x08 //Supported Colors

include/virtual_stack_manager.h

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,14 @@
2020
static unsigned char fetch_data_variable(unsigned char);
2121
static void create_data_variable(unsigned char);
2222
static void assign_data_variable(unsigned char,unsigned char);
23-
static void delete_data_variable(unsigned char);
23+
2424
static unsigned char fetch_variable_slot(unsigned char);
2525

26-
static void reset_stack(void);
2726

2827
static unsigned char fetch_block_address(unsigned char);
2928
static void allocate_callable_block(unsigned char,unsigned char);
30-
static void delete_callable_block(unsigned char);
29+
30+
31+
static void reset_stack(void);
3132

3233
#endif //virtual_stack_manager_h

0 commit comments

Comments
 (0)