summaryrefslogtreecommitdiff
path: root/output/outmacho.mac
AgeCommit message (Collapse)AuthorFilesLines
2009-07-08macho64: Manually merge macho64 branch with master branch.Keith Kanios1-1/+1
2009-07-06NASM: relicense under the 2-clause BSD licenseH. Peter Anvin1-12/+0
*To the best of my knowledge*, we now have authorization from everyone who has significantly contributed to NASM in the past. As such, change the license to the 2-clause BSD license. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
2009-06-28Add copyright headers to macro filesH. Peter Anvin1-0/+45
These are definitely overly restrictive, need auditing to pare them down to proper BSD licensing. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
2008-09-09macros: win32 and win64 are COFF, not Mach-OH. Peter Anvin1-1/+1
Somehow the win32 and win64 aliases got listed on Mach-O, not on COFF. This doesn't have any effect on the current code, but might in the future. Correct. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
2008-06-20Move the output format macros into the macros.pl mechanismH. Peter Anvin1-0/+4
Move the handling of "extra" macros (i.e. output format macros) into the macros.pl mechanism. This allows us to change the format of the internal macro store in the future - e.g. to a single byte store without redundant pointers. Also, stop using indicies into a long array when there is no good reason to not just use different arrays.