More documentation updates

This commit is contained in:
Jeff Parsons 2016-04-08 22:45:25 -07:00
commit 231ca3961e
24 changed files with 184 additions and 18 deletions

10
tests/pc/80386/README.md Normal file
View file

@ -0,0 +1,10 @@
---
layout: page
title: 80386 Tests
permalink: /tests/pc/80386/
---
Overview
---
See [test386.asm](test386.asm).

View file

@ -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

View file

@ -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)