-
Notifications
You must be signed in to change notification settings - Fork 0
/
manual.txt
156 lines (139 loc) · 2.36 KB
/
manual.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
This IntyBASIC
program is a simple
bitmap editor, meant
for designing
Intellivision
background cards.
You can run this
program on a real
Intellivision by
using a flash
cartridge such as
LTO Flash!, or you
can run it on a
modern computer
using an emulator
such as jzIntv.
The bitmap editor
lets you design two
cards at once. Use
the disc to move (on
jzIntv, the arrow
keys), and press any
side button (such as
Shift on jzIntv) to
invert the pixel the
cursor is on. You
can hold down the
side button while
moving to draw
lines.
To clear the screen,
press CLEAR on the
Intellivision keypad
(or press '-' on
jzIntv).
To save your bitmap,
press 1. The bitmap
is saved in the
format of an
IntyBASIC snippet,
which can be
incorporated into an
IntyBASIC program.
SAVING BITMAPS WITH
LTO FLASH!
To save your bitmap
on LTO Flash!, you
need to have a USB
cable connected
between the LTO
Flash! cartridge and
a host computer. On
the host computer,
run a serial
terminal program,
set to 8-N-1, with a
baud rate of
2000000. (Yes,
that's two million
baud.) This baud
rate is a bit
unusual, so not all
programs support it.
I recommend Decisive
Tactics Serial on
Mac OS X.
Or you can just use
the program
"show-serial" which
is in this
repository, which
works on Mac OS X
and Linux.
"show-serial" takes
one command-line
argument, the name
of the serial
device. To find the
name of the serial
device, try "ls
/dev/cu.*" on Mac OS
X, or "ls
/dev/ttyUSB*" on
Linux.
If the LTO Flash! is
on the title screen
or menu, the serial
terminal will
periodically print
"LOCUTUS". This is
normal and harmless.
The bitmap editor
will display a USB
icon in the
upper-right corner
when the LTO Flash!
is connected to a
host computer.
SAVING BITMAPS WITH
JZINTV
On the jzIntv
emulator, pressing 1
will append the
current bitmap to
the file
"bitmap.bas". This
only works if you
specify the
"--file-io" argument
when running jzIntv.
For example,
jzintv -z3 --file-io
. editor.rom
will place
"bitmap.bas" in the
current directory.
The bitmap editor
will display two
letters (an
abbreviation of the
emulator name) in
the upper right
corner when running
on a supported
emulator.
(Currently only
jzIntv supports
saving to a file.)
LICENSE
The bitmap editor is
licensed under the
GNU General Public
License, version 3,
or (at your option)
any later version.
The ".mac" files in
this repository come
from the jzIntv
distribution.