nasm/travis/test/pushseg.json
H. Peter Anvin (Intel) 41bb8a8114 Warn if trying to assemble obsolete instructions
Print a warning if one tries to assemble an obsolete instruction,
unless there is an exact match for the CPU directive.

For example:

	CPU 386
	POP CS		; Warning - obsolete instruction

	CPU 8086
	POP CS		; No warning

Signed-off-by: H. Peter Anvin (Intel) <hpa@zytor.com>
2019-08-06 22:56:51 -07:00

13 lines
197 B
JSON

[
{
"description": "Test push segment",
"id": "pushseg",
"format": "bin",
"source": "pushseg.asm",
"target": [
{ "output": "pushseg.bin" },
{ "stderr": "pushseg.stderr" }
]
}
]