More documentation updates
This commit is contained in:
parent
b626917cbf
commit
231ca3961e
24 changed files with 184 additions and 18 deletions
10
tests/pc/80386/README.md
Normal file
10
tests/pc/80386/README.md
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
---
|
||||
layout: page
|
||||
title: 80386 Tests
|
||||
permalink: /tests/pc/80386/
|
||||
---
|
||||
|
||||
Overview
|
||||
---
|
||||
|
||||
See [test386.asm](test386.asm).
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
all: test386.json test386.img
|
||||
|
||||
test386.com: test386.nasm ../inc/dos.inc ../inc/misc.inc ../inc/x86.inc
|
||||
nasm -i../inc/ -f bin test386.nasm -l test386.lst -o test386.com
|
||||
test386.com: test386.asm ../inc/dos.inc ../inc/misc.inc ../inc/x86.inc
|
||||
nasm -i../inc/ -f bin test386.asm -l test386.lst -o test386.com
|
||||
|
||||
test386.json: test386.com
|
||||
node ../../../modules/filedump/bin/filedump --file=test386.com --output=test386.json --overwrite
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
;
|
||||
; test386.nasm
|
||||
; test386.asm
|
||||
; Copyright © 2012-2015 Jeff Parsons <Jeff@pcjs.org>
|
||||
;
|
||||
; This file is part of PCjs, which is part of the JavaScript Machines Project (aka JSMachines)
|
||||
Loading…
Reference in a new issue