From: Allan Wooley <awooley@exeter.edu>
To: Linux Assembly <linux-assembly@vger.kernel.org>
Subject: chdir command
Date: Fri, 03 May 2002 15:54:31 -0400 [thread overview]
Message-ID: <3CD2EAF6.5A27E998@exeter.edu> (raw)
I can not get system call #12 to work as advertised. In Read Hat Linux
7.2 under bash using nasm with elf I write:
section .text
global _start
path db '/root',0
_start:
mov ebx, path
mov eax,12
int 80h
mov eax, 1
int 80h ;; int 0x80
Although I have gotten system calls 1, 3-6 & 11 to work fine in assembly
programs, I can not get the change-working-directory call to work.
next reply other threads:[~2002-05-03 19:54 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2002-05-03 19:54 Allan Wooley [this message]
2002-05-03 21:31 ` chdir command Brian Raiter
2002-05-06 6:32 ` Konstantin Boldyshev
-- strict thread matches above, loose matches on Subject: below --
2002-05-03 19:55 Allan Wooley
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=3CD2EAF6.5A27E998@exeter.edu \
--to=awooley@exeter.edu \
--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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.