linux-assembly.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "Anticipating a Reply" <ruxyz@yahoo.com>
To: fmarmond@eprocess.fr, linux-assembly@vger.kernel.org
Subject: Re: Prblem with AT&T
Date: Thu, 8 Aug 2002 10:28:09 +0100 (BST)	[thread overview]
Message-ID: <20020808092809.84870.qmail@web14502.mail.yahoo.com> (raw)
In-Reply-To: <3D5225AD.3000302@eprocess.fr>

Hi Frederic !

  I'am fine but got up late this morning , 
because of the beautiful dream .

  The code you sent was for 32 bit mode 
and I have passed the address in the same 
manner to "bp" . 

   I think there is some other method to 
pass the address to the " bp " for 16 
bit mode which is OS independent  .

   Hope some AT&T 16 bit specialist 
will rescue me out of this problem .

   Waiting for the AT&T Robinhood to 
help me out .

Harmony !


  
 --- Frederic Marmond <fmarmond@eprocess.fr> wrote: >
hi!
> 
> how are you today?
> ;-)
> 
> well, with your error code, I think that what i said
> yesterday was right:
> your syntax at
> 
> mymsg: 
> 	.byte 13,10 
> 	.ascii "Handling BIOS interrupts"
> 
> [...]
> 
> 	movw $mymsg,%bp 
> 
> But as I don't know about At&t syntax, here is an
> example of good syntax
> 
> $ cat write.s
> .data
> hw:
> 	.string "hello world\n"
> .text
> .globl main
> main:
> 	movl	$SYS_write,%eax
> 	movl	$1,%ebx
> 	movl	$hw,%ecx
> 	movl	$12,%edx
> 	int	$0x80
> 	movl	$SYS_exit,%eax
> 	xorl	%ebx,%ebx
> 	int	$0x80
> 	ret
> 
> 
> For At&t / intel syntax, please refer to:
> www.linuxassembly.org
> or more precisely:
> http://www.linuxassembly.org/linasm.html
> 
> 
> happy new year!
> 
> ;-)
> Fred
> 
> 
> Anticipating a Reply wrote:
> 
> >Hi All !
> >
> >  I have got the below 16 bit code which is 
> >in Intel Syntax . 
> >
> >----------- INTEL SYNTAX CODE
> ------------------------
> >
> >entry start 
> >
> >start: 
> >	mov ah,#0x03 ; read cursor position. 
> >	xor bh,bh 
> >	int 0x10 
> >	mov cx,#26 ; length of our beautiful string. 
> >	mov bx,#0x0007 ; page 0, attribute 7 (normal) 
> >	mov bp,#mymsg 
> >	mov ax,#0x1301 ; write string, move cursor 
> >	int 0x10 
> >	
> >	loop1: jmp loop1 
> >	
> >mymsg: 
> >	.byte 13,10 
> >	.ascii "Handling BIOS interrupts"
> >
> >
> >---------------------------------------------
> >
> >I am trying to write to the above code in 
> >AT&T format as given below . 
> >
> > But I get the error in "ld" . 
> >
> >sect2.o: In function `_start':
> >sect2.o(.text+0xd): relocation truncated to fit:
> >R_386_16 data
> >
> >  
> >-------------AT&T SYNTAX --------------------
> >
> >
> >.code16
> >
> >.align 4
> >
> >.data
> >
> >mymsg: 
> >	.byte 13,10 
> >	.ascii "Handling BIOS interrupts"
> >
> >.text
> >
> >.globl _start 
> >
> >_start: 
> >	movb $0x03,%ah   # read cursor position. 
> >	xor  %bh,%bh
> > 
> >	int  $0x10 
> >
> >	movw $24,%cx     # length of our beautiful string.
> 
> >	movw $0x0007,%bx # page 0, attribute 7 (normal) 
> >	movw $mymsg,%bp 
> >	movw $0x1301,%ax # write string, move cursor 
> >
> >	int  $0x10 
> >	
> >loop1: 
> >        jmp loop1 
> >	
> >----------------------------------------------
> >
> >   Please help me how to resolve this .
> >
> >Regards 
> >
>
>________________________________________________________________________
> >Want to sell your car? advertise on Yahoo Autos
> Classifieds. It's Free!!
> >       visit http://in.autos.yahoo.com
> >-
> >To unsubscribe from this list: send the line
> "unsubscribe linux-assembly" in
> >the body of a message to majordomo@vger.kernel.org
> >More majordomo info at 
> http://vger.kernel.org/majordomo-info.html
> >
> >  
> >
> 
> 
>  

________________________________________________________________________
Want to sell your car? advertise on Yahoo Autos Classifieds. It's Free!!
       visit http://in.autos.yahoo.com

  reply	other threads:[~2002-08-08  9:28 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-08-08  7:31 Prblem with AT&T Anticipating a Reply
2002-08-08  8:02 ` Frederic Marmond
2002-08-08  9:28   ` Anticipating a Reply [this message]
2002-08-08 16:04 ` Maciej Hrebien
2002-08-10  4:41   ` Anticipating a Reply
2002-08-10 11:47     ` Maciej Hrebien
2002-08-10 19:35     ` Maciej Hrebien
2002-08-14  6:35       ` Anticipating a Reply
2002-08-14 18:40         ` Maciej Hrebien
2002-08-16  4:55           ` Anticipating a Reply

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20020808092809.84870.qmail@web14502.mail.yahoo.com \
    --to=ruxyz@yahoo.com \
    --cc=fmarmond@eprocess.fr \
    --cc=linux-assembly@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).