From c1e9a0ea60780e14f3579f4a0b7ecb10145b8adb Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Sun, 6 Nov 2022 15:42:05 +0200 Subject: Generate release notes for 0.64. --- docs/markdown/snippets/asm.md | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 docs/markdown/snippets/asm.md (limited to 'docs/markdown/snippets/asm.md') diff --git a/docs/markdown/snippets/asm.md b/docs/markdown/snippets/asm.md deleted file mode 100644 index 1055b53..0000000 --- a/docs/markdown/snippets/asm.md +++ /dev/null @@ -1,19 +0,0 @@ -## New languages: `nasm` and `masm` - -When the `nasm` language is added to the project, `.asm` files are -automatically compiled with NASM. This is only supported for x86 and x86_64 CPU -family. `yasm` is used as fallback if `nasm` command is not found. - -When the `masm` language is added to the project, `.masm` files are -automatically compiled with Microsoft's Macro Assembler. This is only supported -for x86, x86_64, ARM and AARCH64 CPU families. - -Note that GNU Assembly files usually have `.s` or `.S` extension and were already -built using C compiler such as GCC or CLANG. - -```meson -project('test', 'nasm') - -exe = executable('hello', 'hello.asm') -test('hello', exe) -``` -- cgit v1.1