alt.lang.asm
  Home FAQ Contact Sign in
alt.lang.asm only
 
Advanced search
July 2008
motuwethfrsasuw
 123456 27
78910111213 28
14151617181920 29
21222324252627 30
28293031    31
2008
 Jan   Feb   Mar   Apr 
 May   Jun   Jul   Aug 
 Sep   Oct   Nov   Dec 
2008 2007 2006  
total
alt.lang.asm Profile…
RELATED GROUPS

POPULAR GROUPS

more...

 Up
  yane         


Author: Evenbit
Date: Jul 1, 2008 18:13

Yep, Americanes Need 'Erbs ??? :)

Yet Another Nerd Experience
You Ain't No Expert
Yonder Assembler Not Easy

;--------------------
; nasm -f elf hw2uyane.asm
; ld -o hw2uyane hw2uyane.o

%%include "yanetut.inc"
putstring "Please tell me your name? "
getstring 79,name
putstring "Hello, "
putstring name
putstring "! Welcome to Linux uhhh... Assembly!", linefeed
putstring "BTW, the answer is "

mov ecx, 42
mov ebx, 1
add ebx, ecx
; HLLp, I can't read this part!!!
Show full article (0.64Kb)
2 Comments
  Re: ch 4         


Author: ronaldsorrell2005
Date: Jul 1, 2008 07:50

On Jun 29, 12:11 am, Frank Kotler verizon.net> wrote:
> ronaldsorrell2...@yahoo.com wrote:
>
> ...
>
>> this program is found in 4.7.3 and the lesson is pointer constants and
>> pointer  constants expressions.
>
> Ah! Apparently the chapters are numbered differently in the Linux
> version, too...
>
> 1.7.3 Pointer Constants and Pointer Constant Expressions
>
> HLA allows two literal pointer constant forms: the address-of operator
> followed by the name of a static variable or the constant zero. In
> addition to these two literal pointer constants, HLA also supports
> simple pointer constant expressions.
>
> The constant zero represents the NULL or NIL pointer, that is, an
> illegal address that does not exist. ...
Show full article (1.46Kb)
no comments