MOS Technology VIC-II

MOS 6569R3 (PAL version) on a C64 main board

The VIC-II (Video Interface Chip II), specifically known as the MOS Technology 6567/6566/8562/8564 (NTSC versions), 6569/8565/8566 (PAL), is the microchip tasked with generating Y/C video signals (combined to composite video in the RF modulator) and DRAM refresh signals in the Commodore 64 and Commodore 128 home computers.

Succeeding the original MOS Technology VIC used in the VIC-20, the VIC-II was one of the key custom chips in the Commodore 64 (the other being the MOS Technology 6581 sound chip).

Development history

The VIC-II chip was designed primarily by Albert Charpentier and Charles Winterble[1] at MOS Technology, Inc. as a successor to the MOS Technology 6560 "VIC". The team at MOS Technology had previously failed to produce two graphics chips named MOS Technology 6562 for the Commodore TOI computer, and MOS Technology 6564 for the Color PET, due to memory speed constraints.[2]

In order to construct the VIC-II, Charpentier and Winterble made a market survey of current home computers and video games, listing up the current features, and what features they wanted to have in the VIC-II. The idea of adding sprites came from the TI-99/4A computer and its TMS9918 graphics coprocessor. The idea to support collision detection came from the Mattel Intellivision. The Atari 800 was also mined for desired features, particularly bitmap mode, which was a desired goal of the MOS team as all of Commodore's principal home computer rivals had bitmap graphics while the VIC-20 only had redefinable characters.[3][4] About 3/4 of the chip surface is used for the sprite functionality.[5]

The chip was partly laid out using electronic design automation tools from Applicon (now a part of UGS Corp.), and partly laid out manually on vellum paper. The design was partly debugged by fabricating chips containing small subsets of the design, which could then be tested separately. This was easy since MOS Technology had both its research and development lab and semiconductor plant at the same location. The initial batch of test chips came out almost fully functional, with only one bad sprite.[6] The chip was developed in 5 micrometer technology.[3]

The work on the VIC-II was completed in November 1981 while Robert Yannes was simultaneously working on the SID chip. Both chips, like the Commodore 64, were finished in time for the Consumer Electronics Show in the first weekend of January 1982.[7]

VIC-II features

Some of the graphics modes on the 64 are really strange, and they have no analogs to the Atari or Apple, like the ability to change color of the character basis across the screen. That gave us a lot of color capability that had not been exploited.

— Craig Nelson of Epyx, 1986[8]
  • 16 kB address space for screen, character and sprite memory
  • 320 × 200 pixels video resolution (160 × 200 in multi-color mode)
  • 40 × 25 characters text resolution
  • Three character display modes and two bitmap modes
  • 16 colors
  • Concurrent handling of 8 sprites per scanline, each of 24 × 21 pixels (12 × 21 multicolor)
  • Raster interrupt (see details, below)
  • Smooth scrolling
  • Independent dynamic RAM refresh
  • Bus mastering for a 6502-style system bus; CPU and VIC-II accessing the bus during alternating half-clock cycles (the VIC-II will halt the CPU when it needs extra cycles)

Technical details

MOS 6567 VIC-II pinout.

Note that below register addresses are stated as seen by CPU in a C64. To yield the register numbers as usually given in data sheets (i. e. starting with 0), the leading "D0" should be omitted.

Programming

Supratechnic, a type-in program published by COMPUTE!'s Gazette in November 1988, showcases the careful use of raster interrupts to display information outside of the standard screen borders (here: the upper and lower border).

The VIC-II is programmed by manipulating its 47 control registers (up from 16 in the VIC), memory mapped to the range $D000$D02E in the C64 address space. Of all these registers, 34 deal exclusively with sprite control (sprites being called MOBs, from "Movable Object Blocks", in the VIC-II documentation). Like its predecessor, the VIC-II handles light pen input, and with help from the C64's standard character ROM, provided the original PETSCII character set from 1977 on a similarly dimensioned display as the 40-column PET series.

By reloading the VIC-II's control registers via machine code hooked into the raster interrupt routine (the scanline interrupt), one can program the chip to generate significantly more than 8 concurrent sprites (a process known as sprite multiplexing), and generally give every program-defined slice of the screen different scrolling, resolution and color properties. The hardware limitation of 8 sprites per scanline can be increased further by letting the sprites flicker rapidly on and off. Mastery of the raster interrupt is essential in order to unleash the VIC-II's capabilities. Many demos and some later games would establish a fixed "lock-step" between the CPU and the VIC-II so that the VIC registers could be manipulated at exactly the right moment.

Character graphics

The C64 shipped with the PETSCII character set in a 4k ROM, but, like the VIC-20 before it, the actual data for the characters was read from memory at a specified location. This location is one of the VIC-II registers, which allowed programmers to construct their own characters sets by placing the appropriate data in memory; each character is an 8x8 grid, a byte representing 8 bits horizontally, so 8 bytes are required for a single character and thus the complete 256-character set uses a total of 2,048 bytes. Theoretically as many as eight character sets can be used if the entire 16k of video memory were filled.[9]: 363 

In addition to charsets, the VIC-II also uses 1000 bytes to store the 25 lines of 40 characters per line, one byte for each character, which in power on default configuration sits at $400-$7E8.[9]: 117–119  Color RAM is accessed as bits 8 to 11 of the video matrix;[10] in the 64 and 128, it is located in I/O space at $D800-$DBFF and cannot be moved from that location. It contains the values for color 1 (color 3 in multicolor mode) of each character.

The character ROM is mapped into two of the VIC-II's four "windows", at $1000-$1FFF and $9000-$9FFF, although the CPU cannot see it there (the character ROM may be switched into $D000-$DFFF where it is visible to the CPU, but not the VIC-II). Thus graphics data or video buffers cannot be placed at $1000-$1FFF or $9000-$9FFF because the VIC-II will see the character ROM there instead. Because these areas of RAM could not be used by the VIC-II graphics chip, they were frequently used for music/sound effects (the SID chip). The C64 has the ability to have RAM and ROM at the same address in memory but the CPU would "see" one and the VIC-II chip would "see" the other.

In default high-resolution character mode, the foreground of each character may be set individually in the color RAM. In multicolor character mode, color 3 is limited to the first eight possible color values; the fourth bit is then used as a flag indicating if this character is to be displayed in high-resolution or multicolor, thus making it possible to mix both types on one screen.[9]: 460–462  Colors 1 and 2 are set by the registers at $D022 and $D023 and are global for all characters.[9]: 373 

If Extended Background Color Mode is used, the upper two bits of the character code are used to select one of four background color registers. This allows four different background colors on the screen, but at the expense of only allowing 64 different characters instead of 256. Because this is limiting, games seldom used it.

Bitmap mode

Adding an all-points-addressable bitmap mode was one of the Commodore design team's primary goals, as the VIC-I lacked such a feature. However, in order to use as little additional circuitry as possible, they organized it in the same manner as character mode, i.e. 8x8 and 4x8 tiles. Bitmap graphics require an 8k page for the pixel data and each byte corresponds to one row of eight or four pixels. The next byte is the row underneath it and after the 8th row, returning to the top of the next tile.

In hi-res bitmaps, screen RAM is used to hold the foreground and background colors of each tile (high and low nibble of each byte). This is the only VIC-II mode that does not make any use of the color RAM at $D800 or the background color register at $D021.

Multicolor bitmap mode allows three colors per tile (the fourth is the background color as set in $D021). Colors 1 and 2 are selected by the bits in screen RAM (same as hires bitmaps) and the third is from color RAM.

Despite the high level of color detail and all-points-addressable capabilities of bitmap mode, it is generally impractical for in-game graphics due to requiring a high amount of system resources (8k for the pixel data plus considerable more CPU cycles to modify each tile) and normally cannot be scrolled. Thus, it is most commonly seen on loader and sometimes title screens.

Sprites

VIC-II sprites are either 24x21 monochrome or 12x21 multicolor. Similar to character graphics, the latter have one individual color for each sprite and two global ones. VIC-II has eight sprites, each of which uses 64 bytes of memory to store but, with certain limitations, it can display many more. Sprite multiplexing is a common method of getting more than eight on screen (although there still is a maximum of eight per scan line). The VIC-II scanline counter can be polled until the desired point is reached on screen, or a raster interrupt can be programmed to trigger at a certain scanline, after which the program quickly changes the sprite coordinates. This method can result in many additional sprites onscreen at once, often for a total of 16 to 24 or more. For a demo, though, the limit is considerably more flexible.

In theory the maximum number of different sprites visible at the same time is 256 (assuming the VIC-II's entire 16k page was filled). They are addressed by using a block number to refer to each sprite pattern in memory beginning with 0 and going to 255 ($FF) depending on their position in the video page. (if the second video bank (numbered as 0 1 2 and 3) is used, Block 0 would refer to the sprite stored at $4000 and Block 255 would be at $7FC0).

Each sprite may be double-sized vertically, horizontally or both. This does not increase the sprite resolution (it is still 24 pixels wide and 21 tall) but each pixel will be twice as wide and/or twice as tall.

Because the horizontal position register for each sprite is one byte and limited to a maximum value of 255, it alone cannot cover the entire 320 pixels of the VIC-II's screen area, so an additional register called the Most Significant Byte Flag provides a 9th position bit for all sprites.

$D01E and $D01F contain the Background and Sprite-to-Sprite Collision registers. The former is rarely used because it cannot provide information on the specific background object the sprite is touching.

$D01B contains the Sprite To Background priority register, which is used to govern whether a sprite moves behind or in front of background graphics. When a sprite enters the same space as another sprite, the lower-numbered ones will always pass over the higher numbered ones.

Scrolling

In order to scroll a character screen, the VIC-II is set to 38-column and/or 24-line mode via the registers at $D011 and $D016. This creates an off-screen buffer where the row of characters to be scrolled is placed. By adjusting the scroll bits in the above-mentioned registers, one row may be moved on-screen after which it repeats unless a new row is put in the buffer. Color RAM is scrolled simultaneous with screen RAM and works the same way.

VIC-II scrolling is a relatively complicated, CPU intensive task, although it is not uncommon for C64 game programmers to cheat by designing graphics so that the color RAM can remain static. Another standard trick is to use a section of the screen (perhaps the bottom or top 4 or 5 character rows) as a game status area to display score, lives, etc. reducing the amount of scrolling that has to be performed. Finally, it is often necessary to use the "double-buffering" technique to prevent screen tearing. Two 1k blocks of screen ram are reserved; one is displayed while another is written to, then during vblank they are quickly swapped through manipulation of the VIC-II registers. Unfortunately this cannot be done with color RAM.

Late in the C64's commercial lifespan, an exploit known as VSP (Variable Screen Positioning) was discovered that involved manipulation of the control bits in $D011 to produce fast scrolling at a much lower CPU cycle cost than the standard scroll registers, however it required careful, cycle-exact coding and did not work reliably on some VIC-II revisions; also it can only be used for horizontal scrolling. It is notably used in Mayhem in Monsterland.

Raster interrupts

Utilization of raster interrupts is an essential part of C64 game programming. In the computer's power-on default state, the first MOS Technology CIA chip generates a maskable interrupt (IRQ) 60 times per second (whether NTSC or PAL, this is unrelated to video refresh) which sends the CPU to the kernel IRQ handler at $EA31. The handler acknowledges the CIA's IRQ, updates the clock, scans the keyboard, and blinks the cursor in BASIC.

Games normally disable the CIA's interrupt and instead set up the VIC-II to generate interrupts when a specific scanline is reached, which is necessary for split-screen scrolling and playing music. The game remaps the IRQ vector at $0314/$0315 to its raster handler which performs these functions and then optionally executes a JMP $EA31 instruction to return control to the kernel.

Some games use only one IRQ; however, chained IRQs are more common and improve program stability. In this setup, the IRQ is remapped to the second routine and so forth for each one until the last one restores it to the address of the first IRQ. When chained IRQs are used, only one JMP $EA31 instruction is needed in the chain and the others can be ended with JMP $EA81, which simply goes to the end of the kernel handler. Also it is not uncommon for games to switch out the kernal and use their own IRQ handler instead. The NMI can be used for an additional interrupt thread, although undesirable side effects can result from accidentally pressing the Restore key as it triggers an NMI if pressed.

The VIC-II may also generate a raster interrupt from the collision registers, but this feature is rarely used as it provides insufficient information to the program in most cases.

Memory mapping

The VIC-II has a 14-bit address bus and can use any of the four 16k segments of the C64's memory space for video data. To manage this, two additional address bits are contributed by port bits of CIA. $0000-$3FFF is the power-on default. The second segment ($4000$7FFF) is typically the best choice for programming from BASIC as it is the only segment that is completely free RAM with no ROMs or I/O registers mapped into it. The fourth segment ($C000$FFFF) is also a good choice provided that machine language is used, as the kernel ROMs must be disabled to gain read access by the CPU, and it avoids having discontiguous program code and data that would result from using $4000-$7FFF. Note that graphics data may be freely stored underneath the BASIC ROM at $A000-$BFFF, the kernel ROM at $E000-$FFFF or I/O registers and color RAM at $D000$DFFF, since the VIC-II only sees RAM, regardless of how the CPU memory mapping is adjusted; character ROM is visible only in the first and third segment, thus if segment two or four is used, the programmer must supply his own character data. The screen RAM, bitmap page, sprites, and character sets must all occupy the same segment window (provided the CIA bits aren't changed via scanline interrupt). The last six bytes of system memory ($FFFA-$FFFF) contain the IRQ, NMI, and reset vectors so if the top of memory is used to store a character set or sprite data, and the KERNAL ROM is switched out revealing the RAM underneath to the CPU, it will be necessary to sacrifice one character or sprite to avoid overwriting the vectors.

Registers

The VIC-II has 47 read/write registers listed below:

Register Hexadecimal Bit 7 Bit 6 Bit 5 Bit 4 Bit 3 Bit 2 Bit 1 Bit 0 Description
0
D000
M0X
X Coordinate Sprite 0
1
D001
M0Y
Y Coordinate Sprite 0
2
D002
M1X
X Coordinate Sprite 1
3
D003
M1Y
Y Coordinate Sprite 1
4
D004
M2X
X Coordinate Sprite 2
5
D005
M2Y
Y Coordinate Sprite 2
6
D006
M3X
X Coordinate Sprite 3
7
D007
M3Y
Y Coordinate Sprite 3
8
D008
M4X
X Coordinate Sprite 4
9
D009
M4Y
Y Coordinate Sprite 4
10
D00A
M5X
X Coordinate Sprite 5
11
D00B
M5Y
Y Coordinate Sprite 5
12
D00C
M6X
X Coordinate Sprite 6
13
D00D
M6Y
Y Coordinate Sprite 6
14
D00E
M7X
X Coordinate Sprite 7
15
D00F
M7Y
Y Coordinate Sprite 7
16
D010
M7X8 M6X8 M5X8 M4X8 M3X8 M2X8 M1X8 M0X8 MSBs of X coordinates
17
D011
RST8 ECM BMM DEN RSEL
YSCROLL
Control register 1
18
D012
RST
Raster counter
19
D013
LPX
Light Pen X
20
D014
LPY
Light Pen Y
21
D015
M7E M6E M5E M4E M3E M2E M1E M0E Sprite enabled
22
D016
RES MCM CSEL
XSCROLL
Control register 2
23
D017
M7YE M6YE M5YE M4YE M3YE M2YE M1YE M0YE Sprite Y expansion
24
D018
VM13 VM12 VM11 VM10 CB13 CB12 CB11 Memory pointers
25
D019
IRQ ILP IMMC IMBC IRST Interrupt register
26
D01A
ELP EMMC EMBC ERST Interrupt enabled
27
D01B
M7DP M6DP M5DP M4DP M3DP M2DP M1DP M0DP Sprite data priority
28
D01C
M7MC M6MC M5MC M4MC M3MC M2MC M1MC M0MC Sprite multicolor
29
D01D
M7XE M6XE M5XE M4XE M3XE M2XE M1XE M0XE Sprite X expansion
30
D01E
M7M M6M M5M M4M M3M M2M M1M M0M Sprite-sprite collision
31
D01F
M7D M6D M5D M4D M3D M2D M1D M0D Sprite-data collision
32
D020
EC
Border color
33
D021
B0C
Background color 0
34
D022
B1C
Background color 1
35
D023
B2C
Background color 2
36
D024
B3C
Background color 3
37
D025
MM0
Sprite multicolor 0
38
D026
MM1
Sprite multicolor 1
39
D027
M0C
Color sprite 0
40
D028
M1C
Color sprite 1
41
D029
M2C
Color sprite 2
42
D02A
M3C
Color sprite 3
43
D02B
M4C
Color sprite 4
44
D02C
M5C
Color sprite 5
45
D02D
M6C
Color sprite 6
46
D02E
M7C
Color sprite 7

Colors

The VIC-II chip has a fixed 16-color palette, shown above.

In multicolor character mode (160×200 pixels, which most games use) characters have 4×8 pixels (the characters are still approximately square since the pixels are double width) and 4 colors out of 16 colors. Three of the colors are the same for the entire screen (the background color, multicolor 1, and multicolor 2 registers), while the remaining color can be set individually for every such 4×8 pixel area as defined in color RAM. Sprites in multicolor mode (12×21 pixels) have three colors plus transparency: two colors shared among all sprites and one individual. Artists pick shared colors such that the combination with individual colors leads to a colorful impression. Some games reload shared colors during the raster interrupt; for example, the game Turrican II's underwater area (which was vertically distinct) has different colors. Others, such as Epyx's Summer Games and COMPUTE!'s Gazette's Basketball Sam & Ed, overlay two high-resolution sprites to allow two foreground colors to be used without sacrificing horizontal resolution [1]. Of course, this technique reduces the number of available sprites by half.

On PAL C64s, the PAL delay line in the monitor or TV which averages the color hue, but not the brightness, of consecutive screen lines can be used to create seven nonstandard colors by alternating screen lines showing two colors of identical brightness. There are seven such pairs of colors in the VIC chip.[11]

The C64's team did not spend much time on mathematically computing the 16 color palette. Robert Yannes, who was involved with the development of the VIC-II, said:

I'm afraid that not nearly as much effort went into the color selection as you think. Since we had total control over hue, saturation and luminance, we picked colors that we liked. In order to save space on the chip, though, many of the colors were simply the opposite side of the color wheel from ones that we picked. This allowed us to reuse the existing resistor values, rather than having a completely unique set for each color.[12]

Early versions of the VIC-II used in PAL C64s have a different color palette than later revisions.[13]

The full palette of sixteen colors is generated based on variations of YPbPr signals as shown below:

Number — name Y Pb (rel.) Pr (rel.)
0 — black 0 0 0
1 — white 1 0 0
2 — red 0.3125 −0.3826834 0.9238795
3 — cyan 0.625 0.3826834 −0.9238795
4 — purple 0.375 0.7071068 0.7071068
5 — green 0.5 −0.7071068 −0.7071068
6 — blue 0.25 1 0
7 — yellow 0.75 −1 0
8 — orange 0.375 −0.7071068 0.7071068
9 — brown 0.25 −0.9238795 0.3826834
10 — light red 0.5 −0.3826834 0.9238795
11 — dark grey 0.3125 0 0
12 — medium grey 0.46875 0 0
13 — light green 0.75 −0.7071068 −0.7071068
14 — light blue 0.46875 1 0
15 — light grey 0.625 0 0


The VIC-IIe

MOS 8566 VIC-IIe pinout
MOS 8566 VIC-IIe pinout

The 8564/8566 VIC-IIe in the Commodore 128 uses 48 pins rather than 40, as it produces more signals, among them the clock for the additional Zilog Z80 CPU of that computer. It also has two extra registers. One of the additional registers is for accessing the added numerical keypad and other extra keys of that computer; this function was added to the VIC merely because that proved to be the easiest place in the computer to add the necessary three extra output pins. The other extra register is for toggling between a 1 MHz and a 2 MHz system clock; at the higher speed the VIC-II's video output is merely displaying every second byte in the code as black hires bit-pattern on the screen, suggesting use of the C128's 80-column mode at that speed (via the 8563 VDC RGB chip). Rather unofficially, the two extra registers are also available in the C128's C64 mode, permitting some use of the extra keys, as well as double-speed-no-video execution of CPU-bound code (such as intensive numerical calculations) in self-made C64 programs.[14] The extra registers are also one source of minor incompatibility between the C128's C64 mode and a real C64 - a few older C64 programs inadvertently wrote into the MHz toggle bit, which would do nothing at all on a real C64, but would result in a messed-up display on a C128 in C64 mode.

The VIC-IIe has the little-known ability to create an additional set of colors by manipulating the registers in a specific way that puts the color signal out of phase with what other parts of the chip consider it to be in.[citation needed] This ability was demonstrated in the "Risen from Oblivion" demo. [15] Unfortunately it does not work on all monitors - correct colors are confirmed on Commodore CRT monitors and their equivalents.

Using the specific behavior of the VIC-IIe's test bit, it is furthermore capable of producing a real interlace picture with a resolution of 320×400 (hires mode) and 160×400 (multicolor mode).[16]

List of VIC-II versions

Commodore made many modifications to the VIC-II during its lifetime. Compute!'s Gazette's first issue, in July 1983, reported that there had already been eight since the Commodore 64's release in mid-1982.[17]

  • PAL
    • MOS Technology 6569 – (PAL-B, used in most PAL countries)
    • MOS Technology 6572 – (PAL-N, used in southern South America only)
    • MOS Technology 6573 – (PAL-M, used in Brazil only)
    • MOS Technology 8565 – HMOS-II version for "C64E" motherboards
    • MOS Technology 8566 – VIC-II E (PAL-B) C128 version
    • MOS Technology 8569 – VIC-II E (PAL-N) C128 version
  • NTSC
    • MOS Technology 6566 – designed for SRAM/non-muxed address lines (used in the MAX Machine)
    • MOS Technology 6567 – Original NMOS version
    • MOS Technology 8562 – HMOS-II version
    • MOS Technology 8564 – VIC-II E C128 version

The earliest revision of the VIC-II was used in machines made during 1982 and early 1983; it had a ceramic shell for thermal reasons and generated 64 NTSC color clocks per line. These chips also did not output separated chroma and luminance signals. Later revisions had a lower cost plastic shell and 65 color clocks per line (for NTSC, 63 for PAL), as well as separated chroma and luminance, allowing for an early form of S-video. Several revisions were made chiefly in the interest of improving video output quality, which was poor on the early units, and eliminating a bug that would cause random pixels to appear on screen (a few early games intentionally exploited this for graphics effects that consequently did not work on later C64s). The 64 color clocks on the initial VIC-II was done with the intention of allowing NTSC artifact color in high resolution bitmap mode as the Atari 8-bit computers did, but that idea was quickly dropped.

Because it was necessary for cost reasons to switch to a plastic shell, overheating tended to be a problem with the VIC-II. This was for several reasons including the high density of the die relative to the process used, and its high internal speed (8 MHz). Commodore tried an impromptu solution for this by using the aluminum RF shield as a heat sink (on NTSC machines; PAL machines were sold in countries with less restrictive RF interference standards than the United States and so only used aluminized cardboard), however it was not entirely effective at preventing overheating and chip failure.

The 85xx VIC-II used in C64Cs was made with the more modern 3.5 μm HMOS process and requires only a single 5V power rail instead of the dual 12V and 5V rails of the 65xx VIC-II. These chips run significantly cooler and do not suffer from the overheating issues that affect the 65xx VIC-II.

Several revisions of 6569 exist: 6569R1 (usually gold plated), 6569R3, 6569R4 and 6569R5. The most common version of 8565 is 8565R2.

See also

References

  1. ^ Pierceall, Kimberly. "Turns out, the leader of the Commodore 64 engineering team retired to Yorktown". pilotonline.com. Retrieved 2021-10-12.
  2. ^ Bagnall, Brian (2005). "The Secret Project 1981". On the Edge: The Spectacular Rise and Fall of Commodore (1 ed.). Winnipeg, Manitoba: Variant Press. pp. 224–225. ISBN 0-9738649-0-7.
  3. ^ a b Perry, Tekla S.; Wallich, Paul (March 1985). "Design case history: the Commodore 64" (PDF). IEEE Spectrum. 22 (3). New York, New York: Institute of Electrical and Electronics Engineers: 48–58. doi:10.1109/MSPEC.1985.6370590. ISSN 0018-9235. S2CID 11900865. Archived from the original (PDF) on May 13, 2012. Retrieved 2011-11-12.
  4. ^ Bagnall, Brian (2005). "The Secret Project 1981". On the Edge: The Spectacular Rise and Fall of Commodore (1 ed.). Winnipeg, Manitoba: Variant Press. p. 227. ISBN 0-9738649-0-7.
  5. ^ Bagnall, Brian (2005). "The Secret Project 1981". On the Edge: The Spectacular Rise and Fall of Commodore (1 ed.). Winnipeg, Manitoba: Variant Press. p. 229. ISBN 0-9738649-0-7.
  6. ^ Bagnall, Brian (2005). "The Secret Project 1981". On the Edge: The Spectacular Rise and Fall of Commodore (1 ed.). Winnipeg, Manitoba: Variant Press. p. 230. ISBN 0-9738649-0-7.
  7. ^ Bagnall, Brian (2005). "The Secret Project 1981". On the Edge: The Spectacular Rise and Fall of Commodore (1 ed.). Winnipeg, Manitoba: Variant Press. p. 242. ISBN 0-9738649-0-7.
  8. ^ Yakal, Kathy (June 1986). "The Evolution of Commodore Graphics". Compute!'s Gazette. pp. 34–42. Retrieved 2019-06-18.
  9. ^ a b c d Cowper, Ottis R. (1986). Mapping the Commodore 128. Greensboro, North Carolina: COMPUTE! Books. ISBN 0-87455-060-2.
  10. ^ "6567 Video Interface Chip: Specification Sheet" (PDF). Commodore Semiconductor Group. sheets 2 and 5.
  11. ^ "Luma-Driven Graphics on the C64".
  12. ^ Timmermann, Philip. "Commodore VIC-II Color Analysis (Preview)". Retrieved 11 February 2018.
  13. ^ Sjöstedt, Ilkka (30 March 2016). "Old VIC-II Colors and Color Blending". ilesj's blog. Retrieved 11 February 2018.
  14. ^ Cowper, Ottis R.; Florance, David; Heimarck, Todd D.; Krause, John; Miller, George W.; Mykytyn, Kevin; Nelson, Philip I.; Victor, Tim (October 1985). "Chapter 7. System Architecture". COMPUTE!'s 128 Programmer's Guide. Greensboro, North Carolina: COMPUTE! Publications. pp. 348–349. ISBN 0-87455-031-9.
  15. ^ "Risen from Oblivion - trivia".
  16. ^ "VIC-IIe Interlace".
  17. ^ Halfhill, Tom R. (July 1983). "Commodore 64 Video Update". Compute!'s Gazette. p. 40. Retrieved 6 February 2016.

Read other articles:

Pelarangan penyiksaan adalah salah satu contoh norma jus cogens Jus cogens atau ius cogens (dalam bahasa Inggris juga disebut peremptory norms) adalah asas dasar hukum internasional yang diakui oleh komunitas internasional sebagai norma yang tidak boleh dilanggar dalam keadaan apapun. Tidak ada konsensus resmi mengenai norma mana yang merupakan jus cogens dan bagaimana suatu norma mencapai status tersebut. Walaupun begitu, beberapa norma yang biasanya dianggap sebagai jus cogens adalah pelaranga…

Голубянки Самец голубянки икар Научная классификация Домен:ЭукариотыЦарство:ЖивотныеПодцарство:ЭуметазоиБез ранга:Двусторонне-симметричныеБез ранга:ПервичноротыеБез ранга:ЛиняющиеБез ранга:PanarthropodaТип:ЧленистоногиеПодтип:ТрахейнодышащиеНадкласс:ШестиногиеКласс:Н…

Сельское поселение России (МО 2-го уровня)Новотитаровское сельское поселение Флаг[d] Герб 45°14′09″ с. ш. 38°58′16″ в. д.HGЯO Страна  Россия Субъект РФ Краснодарский край Район Динской Включает 4 населённых пункта Адм. центр Новотитаровская Глава сельского посел…

1963 law in North Carolina, United States This article needs additional citations for verification. Please help improve this article by adding citations to reliable sources. Unsourced material may be challenged and removed.Find sources: North Carolina Speaker Ban – news · newspapers · books · scholar · JSTOR (July 2019) (Learn how and when to remove this message) UNC Student Body President Paul Dickson (right) standing beside Frank Wilkinson (left) before…

Державний комітет телебачення і радіомовлення України (Держкомтелерадіо) Приміщення комітетуЗагальна інформаціяКраїна  УкраїнаДата створення 2003Керівне відомство Кабінет Міністрів УкраїниРічний бюджет 1 964 898 500 ₴[1]Голова Олег НаливайкоПідвідомчі орг…

泰国陆军元帅他侬·吉滴卡宗ถนอม กิตติขจรPChW SR MPCh MWM第10任泰國總理任期1963年12月9日—1973年10月14日君主拉玛九世前任沙立·他那叻元帥继任訕耶·探瑪塞任期1958年1月1日—1958年10月20日君主拉玛九世前任乃朴·沙拉信继任沙立·他那叻元帥第32任泰國國防部長任期1957年9月23日—1973年10月14日前任鑾披汶·頌堪继任他威·尊拉塞(英语:Dawee Chullasapya) 个人资料出生(…

2016年美國總統選舉 ← 2012 2016年11月8日 2020 → 538個選舉人團席位獲勝需270票民意調查投票率55.7%[1][2] ▲ 0.8 %   获提名人 唐納·川普 希拉莉·克林頓 政党 共和黨 民主党 家鄉州 紐約州 紐約州 竞选搭档 迈克·彭斯 蒂姆·凱恩 选举人票 304[3][4][註 1] 227[5] 胜出州/省 30 + 緬-2 20 + DC 民選得票 62,984,828[6] 65,853,514[6] 得…

2020年夏季奥林匹克运动会波兰代表團波兰国旗IOC編碼POLNOC波蘭奧林匹克委員會網站olimpijski.pl(英文)(波兰文)2020年夏季奥林匹克运动会(東京)2021年7月23日至8月8日(受2019冠状病毒病疫情影响推迟,但仍保留原定名称)運動員206參賽項目24个大项旗手开幕式:帕维尔·科热尼奥夫斯基(游泳)和马娅·沃什乔夫斯卡(自行车)[1]闭幕式:卡罗利娜·纳亚(皮划艇)[2…

Bataille de Mu'tah Vestiges archéologiques de la bataille en 2013 Informations générales Date Septembre 629 / Jumada al-Awwal 8 AH Lieu Mu'tah (en), à l'est du Jourdain et d'al-Karak Issue Victoire byzantine[1],[2],[3],[4] Changements territoriaux Influence musulmane parmi les tribus arabes de la région Belligérants Empire byzantin Ghassanides Arabes musulmans Commandants Théodore Héraclius Churahbil ibn Amr (en) Zayd ibn Haritha 💀 Jafar ibn Abi Talib 💀 Abd Allah ibn Rawa…

Sports venue in Athens, Greece The Markopoulo Olympic Equestrian Centre hosted the equestrian events at the 2004 Summer Olympics in Athens, Greece.[1] The venue is located at Markópoulo on the outskirts of the Athens suburbs. It was completed in December 2003 and officially opened on 12 August 2004, shortly before the beginning of the competition. The capacity of the venue is 10,000 for the Jumping Event, 8,100 seats for the Dressage and 15,000 seats for the Cross-Country Event.[2&#…

For the Hungarian-American film producer, see William Fox (producer). You can help expand this article with text translated from the corresponding article in German. (April 2012) Click [show] for important translation instructions. View a machine-translated version of the German article. Machine translation, like DeepL or Google Translate, is a useful starting point for translations, but translators must revise errors as necessary and confirm that the translation is accurate, rather than si…

Presiden Menteri Thüringen sejak tahun 1920 antara lain sebagai berikut.[1] Daftar Partai Politik:       SPD       DDP       DVP       Landbund       NSDAP       SED       CDU       Kiri       Militer Gambar Nama (Lahir-M…

Marine protected area on California's coast This article needs additional citations for verification. Please help improve this article by adding citations to reliable sources. Unsourced material may be challenged and removed.Find sources: Sea Lion Cove State Marine Conservation Area – news · newspapers · books · scholar · JSTOR (June 2024) (Learn how and when to remove this message) Sea Lion Cove State Marine Conservation AreaPoint Arena LightLocationPoin…

محيي الدين المغربي معلومات شخصية اسم الولادة يحيى بن محمد بن أبي الشكر المغربي  الميلاد سنة 1220 [1]  الأندلس  الوفاة سنة 1283 (62–63 سنة)[1]  مراغة  مواطنة  الدولة العباسية الدولة الإلخانية الحياة العملية تعلم لدى نصير الدين الطوسي المهنة فلكي،  ومنجم، …

Legislative chamber of the Saskatchewan Legislature Legislative Assembly of Saskatchewan29th Saskatchewan LegislatureTypeTypeUnicameral chamber of the Saskatchewan Legislature HistoryFounded1905 (1905)Preceded byNorth-West Legislative AssemblyLeadershipSpeakerRandy Weekes, Independent since November 30, 2020 Deputy SpeakerFred Bradshaw, Saskatchewan Party since October 10, 2023 PremierScott Moe, Saskatchewan Party since February 2, 2018 Leader of the OppositionCarla Beck,&#…

General elections held in Haiti on 28 November 2010 2010–11 Haitian presidential election ← 2006 10 November 2010 (first round)20 March 2011 (second round) 2015 → Registered4,694,961   Nominee Michel Martelly Mirlande Manigat Party Repons Peyizan RPND Popular vote 716,986 336,747 Percentage 67.57% 32.43% President before election René Préval Lespwa Elected President Michel Martelly Repons Peyizan General elections were held in Haiti on 28 November 2010, having…

List of events ← 1908 1907 1906 1909 in the United States → 1910 1911 1912 Decades: 1880s 1890s 1900s 1910s 1920s See also: History of the United States (1865–1918) Timeline of United States history (1900–1929) List of years in the United States 1909 in the United States1909 in U.S. states and territories States Alabama Arkansas California Colorado Connecticut Delaware Florida Georgia Idaho Illinois Indiana Iowa Kansas Kentucky Louisiana Maine Maryland Massachusetts Michigan Minn…

Canadian garage rock band Not to be confused with Deja Voodoo (New Zealand band). Deja VoodooA Deja Voodoo ticket from 1986Background informationOriginMontreal, Quebec, CanadaGenresAlternative, Garage Rock, Lo-fiYears active1981 (1981)–1990 (1990)LabelsOg MusicPast membersGerard van HerkTony DewaldWebsiteDeja Voodoo Deja Voodoo was a Canadian garage rock band, formed by Gerard van Herk (guitar and singing) and Tony Dewald (drums), who combined 1950s horror imagery with rockabilly and…

塞爾維亞暱稱Delfini(The Dolphins)協會塞爾維亞水球協會總會LEN (歐洲)總教練德扬·萨维奇助理教練Žarko PetrovićUroš Stevanović隊長日夫科·戈齊奇Most caps德扬·萨维奇 (444)Top scorer亚历山大·沙皮奇 (981)FINA代碼SRB奧運參賽次數7 (首次參賽1996)最佳成績01 ! (2016, 2020)世界錦標賽參賽次數9 (首次參賽1998)最佳成績01 ! (2005, 2009, 2015)世界聯賽參賽次數13 (首次參賽2003)最佳成績01 ! (2005, 20…

2004 Oklahoma Republican presidential primary ← 2000 February 3, 2004 (2004-02-03) 2008 → ← NDTN →41 Republican National Convention delegatesThe number of delegates received is determined by the popular vote   BW Candidate George W. Bush Bill Wyatt Home state Texas California Delegate count 41 0 Popular vote 59,577 6,621 Percentage 90.0% 10.0% Primary results by countyBush:      80–85%  …