Displaying 6 results from an estimated 6 matches for "lodsw".
Did you mean:
lodsb
2010 Nov 26
1
[PATCH] new *br: Show handoff data
...S */
pr_es: call wrstr
.ascii "ES: \0"
LOADE es, dx
pushw %dx
popw %es
call wrhexw
pr_di: call wrstr
.ascii " DI: \0"
LOADE di, dx
pushw %dx
popw %di
call wrhexw
call crlf
/* ES:DI */ /* %es:0(%di) */
movw $4, %cx
call wrhexbses
#ifdef DEBUG_PNP
subw $4, %si
es lodsw
cmpw $0x5024, %ax
jne scn_pnp
es lodsw
cmpw $0x506E, %ax
jne scn_pnp
call wrstr
.ascii " =$PnP\0"
scn_pnp:
call crlf
/* $PnP Scan */
movw $0xf000, %dx
pushw %dx
popw %es
movw $0, %si
movw $0x1000, %cx
/* 0x506E5024 */
movw $0x5024, %dx
movw $0x506E, %bx
ch_pnp: es lodsw...
2006 May 25
2
Compilation issues with s390
Hi all,
I'm trying to compile asterisk on the mainframe (s390 / s390x) and I am
running into issues. I was wondering if somebody could give a hand?
I'm thinking that I should be able to do this. I have noticed that Debian
even has binary RPM's out for Asterisk now. I'm trying to do this on SuSE
SLES8 (with the 2.4 kernel).
What I see is, an issue that arch=s390 isn't
2008 Sep 09
1
[PATCH] parsecmd: show keyword in err_noparm message
.../core/parsecmd.inc 2008-09-09 22:11:35.000000000 +0200
@@ -82,9 +82,11 @@
; No parameter
.noparm:
mov si,err_noparm
- mov al,10 ; Already at EOL
-.error:
call writestr
+ mov si,trackbuf
+ call writestr
+ call crlf
+ mov al,10 ; Already at EOL
jmp short .skipline
.found_keywd: lodsw ; Load argument into ax
@@ -103,7 +105,7 @@
section .data
err_badcfg db 'Unknown keyword in configuration file: ',0
-err_noparm db 'Missing parameter in configuration file.', CR, LF, 0
+err_noparm db 'Missing parameter in configuration file. Keyword: '...
2003 Dec 27
0
2 disks boot patch
...; Save ES ->
real_mode_seg
push cs
pop es ; Set ES <- normal DS
mov di,initrd_cmd
mov cx,initrd_cmd_len
repe cmpsb
jne not_initrd
+; begin - freddy77
+ ; detect change needed
+ lodsw
+ cmp ah, ':'
+ je set_initrd_span
+ xor ax,ax
+ dec si
+ dec si
+set_initrd_span:
+ mov [es:initrd_span], al
+; end - freddy77
+
mov di,InitRD
push si ; mangle_dir mangles si
call mangle_name ; Mangle ramdisk...
2003 Dec 27
0
FW: 2 disks boot patch
...; Save ES ->
real_mode_seg
push cs
pop es ; Set ES <- normal DS
mov di,initrd_cmd
mov cx,initrd_cmd_len
repe cmpsb
jne not_initrd
+; begin - freddy77
+ ; detect change needed
+ lodsw
+ cmp ah, ':'
+ je set_initrd_span
+ xor ax,ax
+ dec si
+ dec si
+set_initrd_span:
+ mov [es:initrd_span], al
+; end - freddy77
+
mov di,InitRD
push si ; mangle_dir mangles si
call mangle_name ; Mangle ramdisk...
2009 Feb 08
1
[PATCH 1/1] COMBOOT API: Add calls for directory functions; Implement for FAT; Try 2
...t_cp_ln: ; Copy VFAT line
+ dec al ; Store the next line we need
+ mov dx,ax ; Use DX to store the progress
+ mov bx,13
+ mov ah,0
+ mul bl ; Offset for DI
+ add di,ax ; Increment DI
+ inc si ; Align to the real characters
+ mov cx,13 ; 13 characters per VFAT DIRENT
+.vfat_cp_chr:
+ gs lodsw ; Unicode here!!
+ mov bp,ds
+ mov es,bp
+ call ucs2_to_cp ; Convert to local codepage
+ mov bp,fs
+ mov es,bp
+ jc .vfat_abort ;-; Use short name if character not on codepage
+ stosb ; CAN NOT OVERRIDE es
+ cmp al,0
+ jz .vfat_find_next ; Null-terminated string; don't process more
+...