From 4fd4ae65b6cb0ebfcbd2bcf241ddbfa44238f516 Mon Sep 17 00:00:00 2001 From: Amaan Cheval Date: Mon, 5 Jun 2017 18:58:04 +0530 Subject: [PATCH] Add comment about failing emms test --- tests/nasm/emms.asm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/nasm/emms.asm b/tests/nasm/emms.asm index 7c6f5b55..6e85bba3 100644 --- a/tests/nasm/emms.asm +++ b/tests/nasm/emms.asm @@ -25,6 +25,7 @@ section .text _start: main: fld dword [mydword] + fld dword [myquad] emms loop: @@ -33,3 +34,7 @@ loop: ;;; fptag = 0xFFFF ;;; cpu.fpu.load_tag_word() = 0xFFFF + +;;; The automated nasm test fails because MMX registers are meant to +;;; alias the mantissa part of the 80-bit x87 registers, which we're +;;; ignoring at the moment.