diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-05-20 03:27:10 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-05-20 03:27:10 +0000 |
commit | 7f0b0f3efd4730176507ac70e033f6d627b7e158 (patch) | |
tree | 180d48a12126ddde80fa0181ee987ded2920b821 /sys/arch/hppa/include | |
parent | ccf726f012a6ad9b03258cf535d7886b53b71aee (diff) |
define BSS() macro to allocate vars in the .bss like other archs do
Diffstat (limited to 'sys/arch/hppa/include')
-rw-r--r-- | sys/arch/hppa/include/asm.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/hppa/include/asm.h b/sys/arch/hppa/include/asm.h index 0f2905b8d60..698ba131e55 100644 --- a/sys/arch/hppa/include/asm.h +++ b/sys/arch/hppa/include/asm.h @@ -1,4 +1,4 @@ -/* $OpenBSD: asm.h,v 1.12 2001/03/29 02:15:57 mickey Exp $ */ +/* $OpenBSD: asm.h,v 1.13 2002/05/20 03:27:09 mickey Exp $ */ /* * Copyright (c) 1990,1991,1994 The University of Utah and @@ -250,4 +250,6 @@ tf4 .reg %fr8 #define ALTENTRY(x) ! .export x, entry ! .label x #define EXIT(x) ! .exit ! .procend +#define BSS(n,s) ! .data ! .label n ! .comm s + #endif /* _MACHINE_ASM_H_ */ |