Skip to content

Commit

Permalink
brk step fix
Browse files Browse the repository at this point in the history
  • Loading branch information
EdouardBERGE committed Nov 19, 2024
1 parent 956fa00 commit e10df9a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion rasm.c
Original file line number Diff line number Diff line change
Expand Up @@ -20813,7 +20813,7 @@ unsigned char * _internal_export_REMU(struct s_assenv *ae, unsigned int *rchksiz
strcat(remu_output,"valmask="); sprintf(zedigit,"%d,",v);strcat(remu_output,zedigit);
strcat(remu_output,"name="); strcat(remu_output,ae->acebrk[i].name); strcat(remu_output,",");
strcat(remu_output,"condition="); strcat(remu_output,ae->acebrk[i].condition); strcat(remu_output,",");
if (ae->acebrk[i].istep) v=RoundComputeExpression(ae,ae->wl[ae->acebrk[i].imask].w+5,0,0,0); else v=ae->acebrk[i].step;
if (ae->acebrk[i].istep) v=RoundComputeExpression(ae,ae->wl[ae->acebrk[i].istep].w+5,0,0,0); else v=ae->acebrk[i].step;
strcat(remu_output,"step="); sprintf(zedigit,"%d;",v);strcat(remu_output,zedigit);
}

Expand Down
4 changes: 2 additions & 2 deletions rasm.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#define PROGRAM_NAME "RASM"
#define PROGRAM_VERSION "2.2"
#define PROGRAM_SUBVERSION ".10"
#define PROGRAM_DATE "xx/10/2024"
#define PROGRAM_SUBVERSION ".11"
#define PROGRAM_DATE "xx/11/2024"
#define PROGRAM_COPYRIGHT "© 2017 BERGE Edouard / roudoudou from Praline"
#define RELEASE_NAME "Consolidation"

Expand Down

0 comments on commit e10df9a

Please sign in to comment.