From: Rod Pemberton on

"santosh" <santosh.k83(a)gmail.com> wrote in message
news:f7n54g$mv1$1(a)aioe.org...
> On Thursday 19 Jul 2007 1:13 pm, Rod Pemberton
> <do_not_have(a)nowhere.cmm> wrote in message <f7n4kc$lgc$1(a)aioe.org>:
>
> >
> > "Herbert Kleebauer" <klee(a)unibwm.de> wrote in message
> > news:469F016B.ED17442(a)unibwm.de...
> >>
> >> Leave it as a homework for the want-to-be low level Linux
> >> X programmer to correct the code.
> >>
> >
> > Herbert,
> >
> > You mean well, but I have to ask. Who's going to do that?
> > Seriously,
> > doesn't "move.l r1,r5", etc., guarantee that no x86 programmer
> > will ever use the code you just posted...
> >
> > i.e., Does anyone want to learn another assembly language (yours)
> > to do x86
> > assembly? How does one assemble it? How does one port it? Does
> > anyone
> > want to port it just to assemble it? If it's x86, why does it look
> > like a mix of 68000, AT&T, and who knows what else?
> >
> > You're giving me flashbacks of Randall's teaching tool HLA: C
> > collided with
> > Pascal. After many surgeries and a jolt it lives... Grrr! Convert
> > your
> > assembler to AT&T syntax and it might be useful to others. Is your
> > assembler even available to others? I don't recall ever seeing a
> > link.
>
> <http://137.193.64.130/windela.zip>
>
> Or search the group for more links.
> IIRC instructions are implemented only uptil the 486, and the compile
> crashed for me on Linux.
>

It seems he has another called ass486.zip...

For windela.c, OUCH! It had a 156 warnings (DJGPP), some of which appear to
be serious. It appears he's not familiar with:

gcc -Wall -pedantic -c

OpenWatcom (wcc386 -wx) returned 48 warnings and 13 errors... It appears
that OW even had problems parsing parts of the file.

So, my observations about how to compile or port HK x86 code are still
valid...


Rod Pemberton

From: Frank Kotler on
Rod Pemberton wrote:
> "santosh" <santosh.k83(a)gmail.com> wrote in message
> news:f7n54g$mv1$1(a)aioe.org...
>
>>On Thursday 19 Jul 2007 1:13 pm, Rod Pemberton
>><do_not_have(a)nowhere.cmm> wrote in message <f7n4kc$lgc$1(a)aioe.org>:
>>
>>
>>>"Herbert Kleebauer" <klee(a)unibwm.de> wrote in message
>>>news:469F016B.ED17442(a)unibwm.de...
>>>
>>>>Leave it as a homework for the want-to-be low level Linux
>>>>X programmer to correct the code.
>>>>
>>>
>>>Herbert,
>>>
>>>You mean well, but I have to ask. Who's going to do that?
>>>Seriously,
>>>doesn't "move.l r1,r5", etc., guarantee that no x86 programmer
>>>will ever use the code you just posted...

No entirely...

>>>i.e., Does anyone want to learn another assembly language (yours)
>>>to do x86
>>>assembly? How does one assemble it? How does one port it? Does
>>>anyone
>>>want to port it just to assemble it? If it's x86, why does it look
>>>like a mix of 68000, AT&T, and who knows what else?
>>>
>>>You're giving me flashbacks of Randall's teaching tool HLA: C
>>>collided with
>>>Pascal. After many surgeries and a jolt it lives... Grrr! Convert
>>>your
>>>assembler to AT&T syntax and it might be useful to others. Is your
>>>assembler even available to others? I don't recall ever seeing a
>>>link.
>>
>><http://137.193.64.130/windela.zip>
>>
>>Or search the group for more links.
>>IIRC instructions are implemented only uptil the 486, and the compile
>>crashed for me on Linux.
>>
>
>
> It seems he has another called ass486.zip...
>
> For windela.c, OUCH! It had a 156 warnings (DJGPP), some of which appear to
> be serious. It appears he's not familiar with:
>
> gcc -Wall -pedantic -c
>
> OpenWatcom (wcc386 -wx) returned 48 warnings and 13 errors... It appears
> that OW even had problems parsing parts of the file.
>
> So, my observations about how to compile or port HK x86 code are still
> valid...

I found I had to rename the file to a lower-case ".c" before it would
compile with gcc (Linux). Upper case ".C" implies C++, or some nonsense.
Compiled and worked fine for me. (yeah, "-Wall -pedantic" makes gcc
complain... so don't)

I just started a post, and my browser quit (bad language)... It included
a "quickstart" guide - file extension must be ".mac", start
daniela/windela/lindela with no parameters, give the "first name" - no
extension - when prompted. So easy, even a HLA user could do it! :)
Watch in amazement as the thing makes an executable from that
line-noise. One last step, "chmod +x myfile" (daniela/windela/lindela
likes to name files ".com"... not really a problem...)

I'll have more to say about Herbert's example. My usual M.O. is to
disassemble his executable into Nasmese, and work from there. This gives
*ugly* results. This example is so beautifully formatted and commented
that it deserves better than that! A "hand translation" will be tedious,
but I think it may be worth it. Not immediately. Herbert speaks a
strange language, but he does beautiful work!

With some recombinant surgery, and a sufficiently powerful jolt, lindela
and ndisasm might be fused into a "converter"... doubt if it'd be worth it.

Best,
Frank
From: Herbert Kleebauer on
santosh wrote:

> IIRC instructions are implemented only uptil the 486, and the compile
> crashed for me on Linux.

gcc -O2 windela.c -o lindela

crashed?????
From: Herbert Kleebauer on
Rod Pemberton wrote:
> "Herbert Kleebauer" <klee(a)unibwm.de> wrote in message


> You mean well, but I have to ask. Who's going to do that? Seriously,
> doesn't "move.l r1,r5", etc., guarantee that no x86 programmer will ever
> use the code you just posted...

This is no code which you should "use". It's more like a documentation
how to do simple graphics output in Linux by directly communicating
with the X server. I would have been happy, if I had such a code when
I started to experiment with Linux graphics. And I wouldn't have cared
if it were written in Intel syntax (you always can disassembly the binary
to get it in your preferred syntax). Most work was done by Frank, but it
still wasn't easy to get this few lines of code working.


> i.e., Does anyone want to learn another assembly language (yours) to do x86
> assembly? How does one assemble it? How does one port it? Does anyone
> want to port it just to assemble it? If it's x86, why does it look like a
> mix of 68000, AT&T, and who knows what else?

That's the wrong question. If you need information, then you have to
take it in the form it is available. If the X Windows documentation is
only available in German you have to read it in German, if demo code
is only available for the SPARC processor, you have to read SPARC
assembler code. Anything is better than no information at all.


> You're giving me flashbacks of Randall's teaching tool HLA: C collided with
> Pascal. After many surgeries and a jolt it lives... Grrr! Convert your
> assembler to AT&T syntax and it might be useful to others. Is your
> assembler even available to others? I don't recall ever seeing a link.

Don't think somebody would like to use it. I don't have written it
to be useful for others, I have written it because I hate Intel syntax.
There were only two alternatives: don't do assembly programming on a
x86 or write my own assembler.


> It seems he has another called ass486.zip...

That's the old version which doesn't support Windows/Linux but
includes a TSR DOS debugger.


> For windela.c, OUCH! It had a 156 warnings (DJGPP), some of which appear to
> be serious. It appears he's not familiar with:
>
> gcc -Wall -pedantic -c

I use: gcc -O2 windela.c -o lindela

In DOS (GCC 3.4) there is no warning, in UBUBNTU Linux (GCC 4.1.2) there
is one warning about incompatible implicit declaration of built-in function
'exit' (who cares).


> OpenWatcom (wcc386 -wx) returned 48 warnings and 13 errors... It appears
> that OW even had problems parsing parts of the file.
>
> So, my observations about how to compile or port HK x86 code are still
> valid...

Even MS Visual C++ compiles it without errors.
From: santosh on
On Thursday 19 Jul 2007 4:29 pm, Herbert Kleebauer <klee(a)unibwm.de>
wrote in message <469F4413.7B8DE821(a)unibwm.de>:

> santosh wrote:
>
>> IIRC instructions are implemented only uptil the 486, and the
>> compile crashed for me on Linux.
>
> gcc -O2 windela.c -o lindela
>
> crashed?????

I'll try once more...

The following is about one third of the output gcc emits when I try
your suggested compilation command line above. I'll post the
remaining two thirds in two successive posts as my news server
refuses to accept posts over 32 Kb in size.

santosh(a)sapphire:~/tmp/windela$ gcc -O2 -o lindela WINDELA.C
WINDELA.C: In function ?int main()?:
WINDELA.C:168: error: ?print_string? was not declared in this scope
WINDELA.C:216: error: ?ende? was not declared in this scope
WINDELA.C:222: error: ?ins_lab? was not declared in this scope
WINDELA.C:233: error: ?ende? was not declared in this scope
WINDELA.C:237: error: ?ende? was not declared in this scope
WINDELA.C:248: error: ?ende? was not declared in this scope
WINDELA.C:263: error: ?get_opcode? was not declared in this scope
WINDELA.C:264: error: ?cmps? was not declared in this scope
WINDELA.C:265: error: ?cmps? was not declared in this scope
WINDELA.C:266: error: ?cmps? was not declared in this scope
WINDELA.C:267: error: ?skip_line? was not declared in this scope
WINDELA.C:300: error: ?ende? was not declared in this scope
WINDELA.C:310: error: ?ende? was not declared in this scope
WINDELA.C:311: error: ?read_eol? was not declared in this scope
WINDELA.C:313: error: ?ende? was not declared in this scope
WINDELA.C:317: error: ?list_label? was not declared in this scope
WINDELA.C:318: error: ?ende? was not declared in this scope
WINDELA.C:324: error: ?get_operand? was not declared in this scope
WINDELA.C:328: error: ?get_w? was not declared in this scope
WINDELA.C:347: error: ?dec_boperand? was not declared in this scope
WINDELA.C:353: error: ?aus_byte? was not declared in this scope
WINDELA.C:360: error: ?aus_byte? was not declared in this scope
WINDELA.C:361: error: ?adr_pre? was not declared in this scope
WINDELA.C:362: error: ?seg_pre? was not declared in this scope
WINDELA.C:363: error: ?aus_byte? was not declared in this scope
WINDELA.C:364: error: ?mod__sib? was not declared in this scope
WINDELA.C:370: error: ?aus_byte? was not declared in this scope
WINDELA.C:371: error: ?adr_pre? was not declared in this scope
WINDELA.C:372: error: ?seg_pre? was not declared in this scope
WINDELA.C:373: error: ?aus_byte? was not declared in this scope
WINDELA.C:374: error: ?mod_sib? was not declared in this scope
WINDELA.C:380: error: ?adr_pre? was not declared in this scope
WINDELA.C:381: error: ?seg_pre? was not declared in this scope
WINDELA.C:382: error: ?aus_byte? was not declared in this scope
WINDELA.C:383: error: ?mod_sib? was not declared in this scope
WINDELA.C:395: error: ?dec_operand? was not declared in this scope
WINDELA.C:401: error: ?aus_byte? was not declared in this scope
WINDELA.C:402: error: ?aus_byte? was not declared in this scope
WINDELA.C:403: error: ?aus_word? was not declared in this scope
WINDELA.C:403: error: ?aus_long? was not declared in this scope
WINDELA.C:409: error: ?aus_byte? was not declared in this scope
WINDELA.C:410: error: ?adr_pre? was not declared in this scope
WINDELA.C:411: error: ?aus_byte? was not declared in this scope
WINDELA.C:412: error: ?seg_pre? was not declared in this scope
WINDELA.C:413: error: ?aus_byte? was not declared in this scope
WINDELA.C:414: error: ?mod__sib? was not declared in this scope
WINDELA.C:415: error: ?aus_word? was not declared in this scope
WINDELA.C:415: error: ?aus_long? was not declared in this scope
WINDELA.C:420: error: ?aus_byte? was not declared in this scope
WINDELA.C:421: error: ?adr_pre? was not declared in this scope
WINDELA.C:422: error: ?aus_byte? was not declared in this scope
WINDELA.C:423: error: ?seg_pre? was not declared in this scope
WINDELA.C:424: error: ?aus_byte? was not declared in this scope
WINDELA.C:425: error: ?mod_sib? was not declared in this scope
WINDELA.C:431: error: ?adr_pre? was not declared in this scope
WINDELA.C:432: error: ?aus_byte? was not declared in this scope
WINDELA.C:433: error: ?seg_pre? was not declared in this scope
WINDELA.C:434: error: ?aus_byte? was not declared in this scope
WINDELA.C:435: error: ?mod_sib? was not declared in this scope
WINDELA.C:450: error: ?aus_byte? was not declared in this scope
WINDELA.C:457: error: ?aus_byte? was not declared in this scope
WINDELA.C:458: error: ?adr_pre? was not declared in this scope
WINDELA.C:459: error: ?seg_pre? was not declared in this scope
WINDELA.C:460: error: ?aus_byte? was not declared in this scope
WINDELA.C:461: error: ?mod__sib? was not declared in this scope
WINDELA.C:467: error: ?aus_byte? was not declared in this scope
WINDELA.C:468: error: ?adr_pre? was not declared in this scope
WINDELA.C:469: error: ?seg_pre? was not declared in this scope
WINDELA.C:470: error: ?aus_byte? was not declared in this scope
WINDELA.C:471: error: ?mod_sib? was not declared in this scope
WINDELA.C:477: error: ?adr_pre? was not declared in this scope
WINDELA.C:478: error: ?seg_pre? was not declared in this scope
WINDELA.C:479: error: ?aus_byte? was not declared in this scope
WINDELA.C:480: error: ?mod_sib? was not declared in this scope
WINDELA.C:500: error: ?aus_byte? was not declared in this scope
WINDELA.C:501: error: ?aus_byte? was not declared in this scope
WINDELA.C:502: error: ?aus_word? was not declared in this scope
WINDELA.C:502: error: ?aus_long? was not declared in this scope
WINDELA.C:508: error: ?aus_byte? was not declared in this scope
WINDELA.C:509: error: ?adr_pre? was not declared in this scope
WINDELA.C:510: error: ?aus_byte? was not declared in this scope
WINDELA.C:511: error: ?seg_pre? was not declared in this scope
WINDELA.C:512: error: ?aus_byte? was not declared in this scope
WINDELA.C:513: error: ?mod__sib? was not declared in this scope
WINDELA.C:514: error: ?aus_word? was not declared in this scope
WINDELA.C:514: error: ?aus_long? was not declared in this scope
WINDELA.C:519: error: ?aus_byte? was not declared in this scope
WINDELA.C:520: error: ?adr_pre? was not declared in this scope
WINDELA.C:521: error: ?aus_byte? was not declared in this scope
WINDELA.C:522: error: ?seg_pre? was not declared in this scope
WINDELA.C:523: error: ?aus_byte? was not declared in this scope
WINDELA.C:524: error: ?mod_sib? was not declared in this scope
WINDELA.C:530: error: ?adr_pre? was not declared in this scope
WINDELA.C:531: error: ?aus_byte? was not declared in this scope
WINDELA.C:532: error: ?seg_pre? was not declared in this scope
WINDELA.C:533: error: ?aus_byte? was not declared in this scope
WINDELA.C:534: error: ?mod_sib? was not declared in this scope
WINDELA.C:552: error: ?aus_byte? was not declared in this scope
WINDELA.C:553: error: ?adr_pre? was not declared in this scope
WINDELA.C:554: error: ?aus_byte? was not declared in this scope
WINDELA.C:555: error: ?seg_pre? was not declared in this scope
WINDELA.C:556: error: ?aus_byte? was not declared in this scope
WINDELA.C:557: error: ?mod__sib? was not declared in this scope
WINDELA.C:576: error: ?aus_byte? was not declared in this scope
WINDELA.C:577: error: ?adr_pre? was not declared in this scope
WINDELA.C:578: error: ?aus_byte? was not declared in this scope
WINDELA.C:579: error: ?seg_pre? was not declared in this scope
WINDELA.C:580: error: ?aus_byte? was not declared in this scope
WINDELA.C:581: error: ?mod__sib? was not declared in this scope
WINDELA.C:594: error: ?aus_byte? was not declared in this scope
WINDELA.C:608: error: ?aus_byte? was not declared in this scope
WINDELA.C:615: error: ?aus_byte? was not declared in this scope
WINDELA.C:630: error: ?aus_byte? was not declared in this scope
WINDELA.C:637: error: ?aus_byte? was not declared in this scope
WINDELA.C:650: error: ?aus_byte? was not declared in this scope
WINDELA.C:662: error: ?aus_byte? was not declared in this scope
WINDELA.C:674: error: ?aus_byte? was not declared in this scope
WINDELA.C:689: error: ?aus_byte? was not declared in this scope
WINDELA.C:696: error: ?aus_byte? was not declared in this scope
WINDELA.C:697: error: ?adr_pre? was not declared in this scope
WINDELA.C:698: error: ?seg_pre? was not declared in this scope
WINDELA.C:699: error: ?aus_byte? was not declared in this scope
WINDELA.C:700: error: ?mod__sib? was not declared in this scope
WINDELA.C:706: error: ?aus_byte? was not declared in this scope
WINDELA.C:707: error: ?adr_pre? was not declared in this scope
WINDELA.C:708: error: ?seg_pre? was not declared in this scope
WINDELA.C:709: error: ?aus_byte? was not declared in this scope
WINDELA.C:710: error: ?mod_sib? was not declared in this scope
WINDELA.C:716: error: ?adr_pre? was not declared in this scope
WINDELA.C:717: error: ?seg_pre? was not declared in this scope
WINDELA.C:718: error: ?aus_byte? was not declared in this scope
WINDELA.C:719: error: ?mod_sib? was not declared in this scope
WINDELA.C:737: error: ?aus_byte? was not declared in this scope
WINDELA.C:738: error: ?aus_byte? was not declared in this scope
WINDELA.C:739: error: ?aus_word? was not declared in this scope
WINDELA.C:739: error: ?aus_long? was not declared in this scope
WINDELA.C:745: error: ?aus_byte? was not declared in this scope
WINDELA.C:746: error: ?adr_pre? was not declared in this scope
WINDELA.C:747: error: ?aus_byte? was not declared in this scope
WINDELA.C:748: error: ?seg_pre? was not declared in this scope
WINDELA.C:749: error: ?aus_byte? was not declared in this scope
WINDELA.C:750: error: ?mod__sib? was not declared in this scope
WINDELA.C:751: error: ?aus_word? was not declared in this scope
WINDELA.C:751: error: ?aus_long? was not declared in this scope
WINDELA.C:756: error: ?aus_byte? was not declared in this scope
WINDELA.C:757: error: ?adr_pre? was not declared in this scope
WINDELA.C:758: error: ?aus_byte? was not declared in this scope
WINDELA.C:759: error: ?seg_pre? was not declared in this scope
WINDELA.C:760: error: ?aus_byte? was not declared in this scope
WINDELA.C:761: error: ?mod_sib? was not declared in this scope
WINDELA.C:767: error: ?adr_pre? was not declared in this scope
WINDELA.C:768: error: ?aus_byte? was not declared in this scope
WINDELA.C:769: error: ?seg_pre? was not declared in this scope
WINDELA.C:770: error: ?aus_byte? was not declared in this scope
WINDELA.C:771: error: ?mod_sib? was not declared in this scope
WINDELA.C:789: error: ?aus_byte? was not declared in this scope
WINDELA.C:790: error: ?adr_pre? was not declared in this scope
WINDELA.C:791: error: ?aus_byte? was not declared in this scope
WINDELA.C:792: error: ?seg_pre? was not declared in this scope
WINDELA.C:793: error: ?aus_byte? was not declared in this scope
WINDELA.C:794: error: ?mod__sib? was not declared in this scope
WINDELA.C:809: error: ?adr_pre? was not declared in this scope
WINDELA.C:810: error: ?seg_pre? was not declared in this scope
WINDELA.C:811: error: ?aus_byte? was not declared in this scope
WINDELA.C:812: error: ?mod_sib? was not declared in this scope
WINDELA.C:822: error: ?cmps? was not declared in this scope
WINDELA.C:827: error: ?adr_pre? was not declared in this scope
WINDELA.C:828: error: ?seg_pre? was not declared in this scope
WINDELA.C:829: error: ?aus_byte? was not declared in this scope
WINDELA.C:830: error: ?mod__sib? was not declared in this scope
WINDELA.C:836: error: ?adr_pre? was not declared in this scope
WINDELA.C:837: error: ?seg_pre? was not declared in this scope
WINDELA.C:838: error: ?aus_byte? was not declared in this scope
WINDELA.C:839: error: ?mod__sib? was not declared in this scope
WINDELA.C:845: error: ?adr_pre? was not declared in this scope
WINDELA.C:846: error: ?seg_pre? was not declared in this scope
WINDELA.C:847: error: ?aus_byte? was not declared in this scope
WINDELA.C:848: error: ?mod__sib? was not declared in this scope
WINDELA.C:861: error: ?cmps? was not declared in this scope
WINDELA.C:866: error: ?adr_pre? was not declared in this scope
WINDELA.C:867: error: ?aus_byte? was not declared in this scope
WINDELA.C:868: error: ?seg_pre? was not declared in this scope
WINDELA.C:869: error: ?aus_byte? was not declared in this scope
WINDELA.C:870: error: ?mod__sib? was not declared in this scope
WINDELA.C:876: error: ?adr_pre? was not declared in this scope
WINDELA.C:877: error: ?aus_byte? was not declared in this scope
WINDELA.C:878: error: ?seg_pre? was not declared in this scope
WINDELA.C:879: error: ?aus_byte? was not declared in this scope
WINDELA.C:880: error: ?mod__sib? was not declared in this scope
WINDELA.C:886: error: ?adr_pre? was not declared in this scope
WINDELA.C:887: error: ?aus_byte? was not declared in this scope
WINDELA.C:888: error: ?seg_pre? was not declared in this scope
WINDELA.C:889: error: ?aus_byte? was not declared in this scope
WINDELA.C:890: error: ?mod__sib? was not declared in this scope
WINDELA.C:900: error: ?cmps? was not declared in this scope
WINDELA.C:905: error: ?adr_pre? was not declared in this scope
WINDELA.C:906: error: ?seg_pre? was not declared in this scope
WINDELA.C:907: error: ?aus_byte? was not declared in this scope
WINDELA.C:908: error: ?mod__sib? was not declared in this scope
WINDELA.C:914: error: ?adr_pre? was not declared in this scope
WINDELA.C:915: error: ?seg_pre? was not declared in this scope
WINDELA.C:916: error: ?aus_byte? was not declared in this scope
WINDELA.C:917: error: ?mod__sib? was not declared in this scope
WINDELA.C:923: error: ?adr_pre? was not declared in this scope
WINDELA.C:924: error: ?seg_pre? was not declared in this scope
WINDELA.C:925: error: ?aus_byte? was not declared in this scope
WINDELA.C:926: error: ?mod__sib? was not declared in this scope
WINDELA.C:939: error: ?cmps? was not declared in this scope
WINDELA.C:944: error: ?adr_pre? was not declared in this scope
WINDELA.C:945: error: ?aus_byte? was not declared in this scope
WINDELA.C:946: error: ?seg_pre? was not declared in this scope
WINDELA.C:947: error: ?aus_byte? was not declared in this scope
WINDELA.C:948: error: ?mod__sib? was not declared in this scope
WINDELA.C:954: error: ?adr_pre? was not declared in this scope
WINDELA.C:955: error: ?aus_byte? was not declared in this scope
WINDELA.C:956: error: ?seg_pre? was not declared in this scope
WINDELA.C:957: error: ?aus_byte? was not declared in this scope
WINDELA.C:958: error: ?mod__sib? was not declared in this scope
WINDELA.C:964: error: ?adr_pre? was not declared in this scope
WINDELA.C:965: error: ?aus_byte? was not declared in this scope
WINDELA.C:966: error: ?seg_pre? was not declared in this scope
WINDELA.C:967: error: ?aus_byte? was not declared in this scope
WINDELA.C:968: error: ?mod__sib? was not declared in this scope
WINDELA.C:979: error: ?get_wert? was not declared in this scope
WINDELA.C:980: error: ?aus_byte? was not declared in this scope
WINDELA.C:981: error: ?aus_byte? was not declared in this scope
WINDELA.C:982: error: ?aus_byte? was not declared in this scope
WINDELA.C:995: error: ?aus_long? was not declared in this scope
WINDELA.C:1007: error: ?aus_word? was not declared in this scope
WINDELA.C:1052: error: ?adr_pre? was not declared in this scope
WINDELA.C:1054: error: ?seg_pre? was not declared in this scope
WINDELA.C:1057: error: ?mod__sib? was not declared in this scope
WINDELA.C:1064: error: ?adr_pre? was not declared in this scope
WINDELA.C:1066: error: ?seg_pre? was not declared in this scope
WINDELA.C:1069: error: ?mod_sib? was not declared in this scope
WINDELA.C:1094: error: ?adr_pre? was not declared in this scope
WINDELA.C:1096: error: ?seg_pre? was not declared in this scope
WINDELA.C:1099: error: ?mod__sib? was not declared in this scope
WINDELA.C:1106: error: ?adr_pre? was not declared in this scope
WINDELA.C:1108: error: ?seg_pre? was not declared in this scope
WINDELA.C:1111: error: ?mod_sib? was not declared in this scope
WINDELA.C:1205: error: ?get_w? was not declared in this scope
WINDELA.C:1216: error: ?get_w? was not declared in this scope
WINDELA.C:1226: error: ?get_w? was not declared in this scope
WINDELA.C:1363: error: ?adr_pre? was not declared in this scope
WINDELA.C:1365: error: ?seg_pre? was not declared in this scope
WINDELA.C:1368: error: ?mod_sib? was not declared in this scope
WINDELA.C:1385: error: ?adr_pre? was not declared in this scope
WINDELA.C:1387: error: ?seg_pre? was not declared in this scope
WINDELA.C:1390: error: ?mod_sib? was not declared in this scope
WINDELA.C:1409: error: ?adr_pre? was not declared in this scope
WINDELA.C:1411: error: ?seg_pre? was not declared in this scope
WINDELA.C:1414: error: ?mod__sib? was not declared in this scope
WINDELA.C:1421: error: ?adr_pre? was not declared in this scope
WINDELA.C:1423: error: ?seg_pre? was not declared in this scope
WINDELA.C:1426: error: ?mod_sib? was not declared in this scope
WINDELA.C:1470: error: ?trans? was not declared in this scope
WINDELA.C:1489: error: ?adr_pre? was not declared in this scope
WINDELA.C:1491: error: ?seg_pre? was not declared in this scope
WINDELA.C:1494: error: ?mod__sib? was not declared in this scope
WINDELA.C:1500: error: ?adr_pre? was not declared in this scope
WINDELA.C:1502: error: ?seg_pre? was not declared in this scope
WINDELA.C:1505: error: ?mod_sib? was not declared in this scope
WINDELA.C:1550: error: ?adr_pre? was not declared in this scope
WINDELA.C:1551: error: ?seg_pre? was not declared in this scope
WINDELA.C:1554: error: ?mod_sib? was not declared in this scope
WINDELA.C:1577: error: ?adr_pre? was not declared in this scope
WINDELA.C:1579: error: ?seg_pre? was not declared in this scope
WINDELA.C:1582: error: ?mod_sib? was not declared in this scope
WINDELA.C:1599: error: ?adr_pre? was not declared in this scope
WINDELA.C:1601: error: ?seg_pre? was not declared in this scope
WINDELA.C:1603: error: ?mod_sib? was not declared in this scope
WINDELA.C:1625: error: ?adr_pre? was not declared in this scope
WINDELA.C:1626: error: ?seg_pre? was not declared in this scope
WINDELA.C:1628: error: ?mod__sib? was not declared in this scope
WINDELA.C:1634: error: ?adr_pre? was not declared in this scope
WINDELA.C:1635: error: ?seg_pre? was not declared in this scope
WINDELA.C:1637: error: ?mod_sib? was not declared in this scope
WINDELA.C:1642: error: ?adr_pre? was not declared in this scope
WINDELA.C:1643: error: ?seg_pre? was not declared in this scope
WINDELA.C:1645: error: ?mod_sib? was not declared in this scope
WINDELA.C:1652: error: ?adr_pre? was not declared in this scope
WINDELA.C:1653: error: ?seg_pre? was not declared in this scope
WINDELA.C:1661: error: ?adr_pre? was not declared in this scope
WINDELA.C:1688: error: ?adr_pre? was not declared in this scope
WINDELA.C:1690: error: ?seg_pre? was not declared in this scope
WINDELA.C:1692: error: ?mod__sib? was not declared in this scope
WINDELA.C:1698: error: ?adr_pre? was not declared in this scope
WINDELA.C:1700: error: ?seg_pre? was not declared in this scope
WINDELA.C:1702: error: ?mod_sib? was not declared in this scope
WINDELA.C:1707: error: ?adr_pre? was not declared in this scope
WINDELA.C:1709: error: ?seg_pre? was not declared in this scope
WINDELA.C:1711: error: ?mod_sib? was not declared in this scope
WINDELA.C:1718: error: ?adr_pre? was not declared in this scope
WINDELA.C:1719: error: ?seg_pre? was not declared in this scope
WINDELA.C:1727: error: ?adr_pre? was not declared in this scope
WINDELA.C:1746: error: ?adr_pre? was not declared in this scope
WINDELA.C:1748: error: ?seg_pre? was not declared in this scope
WINDELA.C:1750: error: ?mod__sib? was not declared in this scope
WINDELA.C:1875: error: ?adr_pre? was not declared in this scope
WINDELA.C:1876: error: ?seg_pre? was not declared in this scope
WINDELA.C:1878: error: ?mod__sib? was not declared in this scope
WINDELA.C:1894: error: ?trans? was not declared in this scope
WINDELA.C:1900: error: ?adr_pre? was not declared in this scope
WINDELA.C:1902: error: ?seg_pre? was not declared in this scope
WINDELA.C:1904: error: ?mod__sib? was not declared in this scope
WINDELA.C:1918: error: ?adr_pre? was not declared in this scope
WINDELA.C:1919: error: ?seg_pre? was not declared in this scope
WINDELA.C:1921: error: ?mod__sib? was not declared in this scope
WINDELA.C:1938: error: ?adr_pre? was not declared in this scope
WINDELA.C:1940: error: ?seg_pre? was not declared in this scope
WINDELA.C:1942: error: ?mod__sib? was not declared in this scope
WINDELA.C:1956: error: ?adr_pre? was not declared in this scope
WINDELA.C:1957: error: ?seg_pre? was not declared in this scope
WINDELA.C:1959: error: ?mod__sib? was not declared in this scope
WINDELA.C:1976: error: ?adr_pre? was not declared in this scope
WINDELA.C:1978: error: ?seg_pre? was not declared in this scope
WINDELA.C:1980: error: ?mod__sib? was not declared in this scope
WINDELA.C:2007: error: ?adr_pre? was not declared in this scope
WINDELA.C:2009: error: ?seg_pre? was not declared in this scope
WINDELA.C:2012: error: ?mod_sib? was not declared in this scope
WINDELA.C:2018: error: ?adr_pre? was not declared in this scope
WINDELA.C:2020: error: ?seg_pre? was not declared in this scope
WINDELA.C:2023: error: ?mod_sib? was not declared in this scope
WINDELA.C:2050: error: ?adr_pre? was not declared in this scope
WINDELA.C:2052: error: ?seg_pre? was not declared in this scope
WINDELA.C:2055: error: ?mod_sib? was not declared in this scope
WINDELA.C:2061: error: ?adr_pre? was not declared in this scope
WINDELA.C:2063: error: ?seg_pre? was not declared in this scope
WINDELA.C:2066: error: ?mod_sib? was not declared in this scope
WINDELA.C:2089: error: ?adr_pre? was not declared in this scope
WINDELA.C:2090: error: ?seg_pre? was not declared in this scope
WINDELA.C:2092: error: ?mod__sib? was not declared in this scope
WINDELA.C:2099: error: ?adr_pre? was not declared in this scope
WINDELA.C:2100: error: ?seg_pre? was not declared in this scope
WINDELA.C:2102: error: ?mod_sib? was not declared in this scope
WINDELA.C:2108: error: ?adr_pre? was not declared in this scope
WINDELA.C:2109: error: ?seg_pre? was not declared in this scope
WINDELA.C:2111: error: ?mod_sib? was not declared in this scope
WINDELA.C:2138: error: ?adr_pre? was not declared in this scope
WINDELA.C:2140: error: ?seg_pre? was not declared in this scope
WINDELA.C:2142: error: ?mod__sib? was not declared in this scope
WINDELA.C:2149: error: ?adr_pre? was not declared in this scope
WINDELA.C:2151: error: ?seg_pre? was not declared in this scope
WINDELA.C:2153: error: ?mod_sib? was not declared in this scope
WINDELA.C:2159: error: ?adr_pre? was not declared in this scope
WINDELA.C:2161: error: ?seg_pre? was not declared in this scope
WINDELA.C:2163: error: ?mod_sib? was not declared in this scope
WINDELA.C:2182: error: ?adr_pre? was not declared in this scope
WINDELA.C:2184: error: ?seg_pre? was not declared in this scope
WINDELA.C:2186: error: ?mod__sib? was not declared in this scope
WINDELA.C:2199: error: ?get_w? was not declared in this scope
WINDELA.C:2222: error: ?get_w? was not declared in this scope
WINDELA.C:2238: error: ?adr_pre? was not declared in this scope
WINDELA.C:2239: error: ?seg_pre? was not declared in this scope
WINDELA.C:2241: error: ?mod_sib? was not declared in this scope
WINDELA.C:2247: error: ?adr_pre? was not declared in this scope
WINDELA.C:2248: error: ?seg_pre? was not declared in this scope
WINDELA.C:2250: error: ?mod_sib? was not declared in this scope
WINDELA.C:2268: error: ?trans? was not declared in this scope
WINDELA.C:2274: error: ?trans? was not declared in this scope
WINDELA.C:2280: error: ?adr_pre? was not declared in this scope
WINDELA.C:2282: error: ?seg_pre? was not declared in this scope
WINDELA.C:2284: error: ?mod_sib? was not declared in this scope
WINDELA.C:2290: error: ?adr_pre? was not declared in this scope
WINDELA.C:2292: error: ?seg_pre? was not declared in this scope
WINDELA.C:2294: error: ?mod_sib? was not declared in this scope
WINDELA.C:2307: error: ?cmps? was not declared in this scope
WINDELA.C:2310: error: ?cmps? was not declared in this scope
WINDELA.C:2340: error: ?adr_pre? was not declared in this scope
WINDELA.C:2373: error: ?adr_pre? was not declared in this scope
WINDELA.C:2387: error: ?adr_pre? was not declared in this scope
WINDELA.C:2388: error: ?seg_pre? was not declared in this scope
WINDELA.C:2390: error: ?mod__sib? was not declared in this scope
WINDELA.C:2406: error: ?trans? was not declared in this scope
WINDELA.C:2412: error: ?adr_pre? was not declared in this scope
WINDELA.C:2414: error: ?seg_pre? was not declared in this scope
WINDELA.C:2416: error: ?mod__sib? was not declared in this scope
WINDELA.C:2440: error: ?adr_pre? was not declared in this scope
WINDELA.C:2441: error: ?seg_pre? was not declared in this scope
WINDELA.C:2444: error: ?mod__sib? was not declared in this scope
WINDELA.C:2464: error: ?adr_pre? was not declared in this scope
WINDELA.C:2466: error: ?seg_pre? was not declared in this scope
WINDELA.C:2468: error: ?mod__sib? was not declared in this scope
WINDELA.C:2489: error: ?adr_pre? was not declared in this scope
WINDELA.C:2491: error: ?seg_pre? was not declared in this scope
WINDELA.C:2493: error: ?mod__sib? was not declared in this scope
WINDELA.C:2530: error: ?adr_pre? was not declared in this scope
WINDELA.C:2532: error: ?seg_pre? was not declared in this scope
WINDELA.C:2534: error: ?mod__sib? was not declared in this scope
WINDELA.C:2557: error: ?adr_pre? was not declared in this scope
WINDELA.C:2559: error: ?seg_pre? was not declared in this scope
WINDELA.C:2561: error: ?mod__sib? was not declared in this scope
WINDELA.C:2616: error: ?adr_pre? was not declared in this scope
WINDELA.C:2618: error: ?seg_pre? was not declared in this scope
WINDELA.C:2621: error: ?mod_sib? was not declared in this scope
WINDELA.C:2639: error: ?adr_pre? was not declared in this scope
WINDELA.C:2641: error: ?seg_pre? was not declared in this scope

First  |  Prev  |  Next  |  Last
Pages: 1 2 3 4 5 6 7 8 9 10 11 12
Prev: masm linking from console
Next: NASM HelloWorld - DOS