Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
void foo()
{
__int16 stcknum=0;
__int16 score=0;
__int16* ststr1[25];
_asm
{
push bp ;save BP reg.
mov bp,sp ;save SP reg in BP for use in program
push es ;save the ES segment register
mov ax,ds ;copy DS segement register to ES
mov es,ax
xor ax,ax ;zero out AX for clearing of SCORE var.
mov score,ax ;zero out SCORE
mov stcknum,ax ;initalize number of stack entries to 0
mov esi,ststr1 ;move beginning pointer of string 1 to SI
.
.
etc