addon

Peter Johnson peter at tortall.net
Wed Feb 28 09:39:15 PST 2007


On Wed, 28 Feb 2007, pingved at gmail.com wrote:
> 1. Constant definitions:
> BIOS_SEGMENT equ 0F000h - supported
> BIOS_SEGMENT = 0F000h - not supported ("instruction expected after label"), more simple

I'd be willing to add this.

> 2. "instruction expected after label", problem with keyword loopw.
> next_block:
>    mov al,byte [es:si]
>    mov byte [gs:edi],al
>    inc si
>    inc edi
>    loopw next_block

loopw is not an instruction/keyword in NASM syntax.  Are you sure you 
didn't mean simply
     loop next_block
?

Peter


More information about the yasm-devel mailing list