mirror of
https://github.com/pkimpel/retro-b5500.git
synced 2026-05-04 15:16:53 +00:00
Release emulator version 0.19:
1. Implement write to tape and persistence of tape image data.
This commit is contained in:
48
webUI/B5500MagTapeLoadPanel.html
Normal file
48
webUI/B5500MagTapeLoadPanel.html
Normal file
@@ -0,0 +1,48 @@
|
||||
<!DOCTYPE html>
|
||||
<head>
|
||||
<title>B5500 Emulator Magnetic Tape Loader</title>
|
||||
<meta name="Author" content="Nigel Williams & Paul Kimpel">
|
||||
<!-- 2014-01-01 Original version, cloned from B5500MagTapeDrive.html -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||||
<meta http-equiv="Content-Script-Type" content="text/javascript">
|
||||
<meta http-equiv="Content-Style-Type" content="text/css">
|
||||
<link id=defaultStyleSheet rel=stylesheet type="text/css" href="B5500MagTapeDrive.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div id=MTLoaderDiv>
|
||||
<div id=MTLoaderInnerDiv>
|
||||
<input id=MTLoadFileSelector type=file size=60>
|
||||
|
||||
<div id=MTLoadFormatGroup>
|
||||
Format
|
||||
<select id=MTLoadFormatSelect>
|
||||
<option value="blank" selected>(blank tape)
|
||||
<option value="bcd">.bcd Image
|
||||
<!--
|
||||
<option value="tap">.tap Image
|
||||
-->
|
||||
<option value="aev">ASCII Even Parity
|
||||
<option value="aod">ASCII Odd Parity
|
||||
</select>
|
||||
|
||||
<input id=MTLoadWriteRingCheck type=checkbox checked value="1">
|
||||
<label for=MTLoadWriteRingCheck>Write Ring</label>
|
||||
</div>
|
||||
|
||||
<div id=MTLoadTapeLengthGroup>
|
||||
Tape Length
|
||||
<select id=MTLoadTapeLengthSelect>
|
||||
<option value="600">600 feet
|
||||
<option value="1200">1200 feet
|
||||
<option value="2400" selected>2400 feet
|
||||
</select>
|
||||
</div>
|
||||
<button id=MTLoadCancelBtn>Cancel</button>
|
||||
<button id=MTLoadOKBtn>OK</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user