> Hi to all.
> I am interested to developing a little
> assembly language programs.
> 
> I rode the article written by Thomas Sommers
> ( http://user.nj.net/~tms/hello.html )
> I followed author's instructions but at the end of compilation
> 
>   as -o <name>.o <name>.s
>   ld -o <name> <name>.o
> 
> what I have is
> 
>  #./<name>
>  #ksh: Operation not permitted
> 
> 
>  Someone knows what is happenig ?
> 
> Ale

add the following section:

.section ".note.openbsd.ident", "a"
  .p2align 2
  .long 8
  .long 4
  .long 1
  .ascii "OpenBSD\0"
  .long 0
  .p2align 2

see elf(5) or google for ".note.openbsd.ident"

-- 
ren

Reply via email to