From owner-freebsd-hackers@FreeBSD.ORG Mon Jun 14 11:55:42 2004 Return-Path: Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F14816A4D2 for ; Mon, 14 Jun 2004 11:55:42 +0000 (GMT) Received: from noconname.org (19.Red-80-26-109.pooles.rima-tde.net [80.26.109.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0911943D45 for ; Mon, 14 Jun 2004 11:55:41 +0000 (GMT) (envelope-from jncastellano@noconname.org) Received: from peron (hugo.noconname.org [192.168.0.2]) by noconname.org (Postfix) with SMTP id 5ECF841 for ; Mon, 14 Jun 2004 14:00:36 +0200 (CEST) Message-ID: <003801c45207$01ddfa70$0200a8c0@peron> From: =?iso-8859-1?Q?Jos=E9_Nicol=E1s_Castellano?= To: Date: Mon, 14 Jun 2004 13:59:11 +0200 Organization: Asoc. No cON Name MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2720.3000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2739.300 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: freebsd asm X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Jun 2004 11:55:42 -0000 Hello to all, I'm proud to join this mailing, having posibilities to learn some new features of freebsd system. I have to mention i did some tests in asm from freebsd-devel and i get surprised, look at this: [demon]~$ uname -a FreeBSD demon.noconname.org 5.2.1-RELEASE-p4 FreeBSD 5.2.1-RELEASE-p4 = #0: Tue Apr 6 19:35:49 CEST 2004 root@demon.noconname.org:/usr/obj/usr/src/sys/NocONName i386 [demon]~$ cat hello.asm %include 'system.inc' section .data hola db 'Hola', 0Ah hbytes equ $-hola section .text global _start _start: push dword hbytes push dword hola push dword stdout sys.write push dword 0 sys.exit [demon]~$ nasm -f elf hello.asm hello.asm:1: fatal: unable to open include file `system.inc' =BFWhere is that file?... the -current port of nasm is incomplete ? Ok... we take some modifications... << %include 'system.inc' <