wok diff syslinux/stuff/iso2exe/libdos.c @ rev 20891

Update some WEB_SITE
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Feb 26 08:20:18 2019 +0100 (2019-02-26)
parents 00bb1e4137c6
children
line diff
     1.1 --- a/syslinux/stuff/iso2exe/libdos.c	Sat Feb 07 15:39:46 2015 +0100
     1.2 +++ b/syslinux/stuff/iso2exe/libdos.c	Tue Feb 26 08:20:18 2019 +0100
     1.3 @@ -193,18 +193,22 @@
     1.4  void copycmdline(char store[])
     1.5  {
     1.6  #asm
     1.7 +		pop	cx
     1.8 +		pop	ax
     1.9 +		push	ax
    1.10 +		push	cx
    1.11  		push	si
    1.12  		push	di
    1.13  		push	ds
    1.14  		pop	es
    1.15  		mov	si, #0x81
    1.16 +		xchg	ax, di
    1.17  space:
    1.18  		seg	cs
    1.19  		lodsb
    1.20  		cmp	al, #0x20
    1.21  		je	space
    1.22  		dec	si
    1.23 -		mov	di, [bp+4]
    1.24  		mov	cx, #0x80/2
    1.25  		rep
    1.26  		 seg	cs