Saturday, July 30, 2011

Anna Austin [Post] - Hill Smith Gallery




The always amazing Anna Austin is showcasing some of her exquisite mezzotint works. Be sure to catch her exhibition at the Hill Smith Gallery (113 Pirie Street, Adelaide), on until August 24.

Wednesday, July 27, 2011

Rosa Menkman - Collapse of PAL 2010-2011



this is the storm you call PROGRESS

Sunday, July 24, 2011

Fan Videos Of Coova and little-scale







Grab 'Two Warriors' over at 8BitPeoples.com.

little-scale Footage From AVCON Games Night 2011

Sunday, July 10, 2011

godinpants Covers little-scale's 'Come Back To Me'

For the recent Sound Bytes show in Melbourne, Sydney chipper godinpants played a cover of my track 'Come Back To Me'. Listen to the cover here. Listen to the original here. I am told that a live version will surface soon (maybe), so stay tuned.

Wednesday, July 06, 2011

little-scale Live at AVCON 2011, July 23rd




I am playing at this year's Game Night, which is part of AVCON2011. Game Boy musician xandox and DJ DK81 are also playing. Come along for some super fun happy times.

When: July 23rd from 6pm onwards
Where: Adelaide Convention Centre, Video Games Hall
Cost: $5 (free for AVCON ticket holders)

I'm so excited that I will be writing some new NES music for this event.

Tuesday, July 05, 2011

Buildings in Queenstown, South Australia






Sunday, July 03, 2011

VecM: DIY MIDI Interface for GCE / Milton Bradley Vectrex

Introduction
The VecM is a MIDI interface for the GCE / Milton Bradley Vectrex console. The VecM is made up of two main parts - the interface hardware (which includes a pre-programmed microcontroller) and a custom program for the Vectrex console (which can be put onto a homemade cart or a third-party flash cart). The VecM interface gives the user full control over the sound capabilities of the Vectrex sound chip.



Music Examples
http://lazerscale2010.com/files/little-scale_087_the_harbour.mp3
http://lazerscale2010.com/files/little-scale_066_Happy_Lual.mp3
http://lazerscale2010.com/files/little-scale_065_Commiseration.mp3



Vectrex Sound Capabilities

Unlike most video game consoles, the Vectrex has no direct audio line output and was designed with an internal speaker only. As such, the sound of the Vectrex is always coloured by the physical space in which the console is used. This colouration can be bypassed by modifying a Vectrex console so as to have a direct audio output.

The Vectrex features an AY-3-8912 sound chip – a programmable sound generator made up of three channels. The AY-3-8912 is a sonically identical variant of the AY-3- 8910 sound chip, lacking one of the input / output ports found on the latter. Each channel of the AY-3-8912 can be set to a pitch-enabled mode for which the frequency is selectable. The sound chip also features a noise-enabled mode whereby a global pseudo-random noise source is routed to the output of a given channel. The frequency of the noise source is selectable via a global register. These two modes are not mutually exclusive, as a channel can simultaneously output both pitch and noise material.

The frequency resolution and frequency range of the AY-3-8912 are beyond that of comparable sound chips, such as the Texas Instrument SN76489. However, as with the SN76489, the oscillators of the AY-3- 8912 cannot be adjusted in terms of duty cycle and waveform type. Furthermore, the sound chip features a single amplitude envelope generator that can be used to modulate the volume of a channel. Although all of the features of the AY-3-8912 can, in theory, be used for music composition with the Vectrex, original Vectrex games tended to feature sparse soundtracks that under-utilised the capabilities of the sound chip.



Interface Hardware: Schematic and Notes


9 Pin D-subminiature 1 and 2 refer to controller ports one and two of the Vectrex video game console. IC1 is the ATmega328 microcontroller loaded with an Arduino bootloader and Vectrex Music Interface firmware.

For reference - when considering construction using a pre-built Arduino board:

◦ IC1 Pin 2 = Arduino Digital Pin 0 = PORTD Bit 0
◦ IC1 Pin 3 = Arduino Digital Pin 1 = PORTD Bit 1
◦ IC1 Pin 4 = Arduino Digital Pin 2 = PORTD Bit 2
◦ IC1 Pin 5 = Arduino Digital Pin 3 = PORTD Bit 3
◦ IC1 Pin 6 = Arduino Digital Pin 4 = PORTD Bit 4
◦ IC1 Pin 11 = Arduino Digital Pin 5 = PORTD Bit 5
◦ IC1 Pin 12 = Arduino Digital Pin 6 = PORTD Bit 6
◦ IC1 Pin 13 = Arduino Digital Pin 7 = PORTD Bit 7

◦ IC1 Pin 14 = Arduino Digital Pin 8 = PORTB Bit 0
◦ IC1 Pin 15 = Arduino Digital Pin 9 = PORTB Bit 1
◦ IC1 Pin 16 = Arduino Digital Pin 10 = PORTB Bit 2
◦ IC1 Pin 17 = Arduino Digital Pin 11 = PORTB Bit 3
◦ IC1 Pin 18 = Arduino Digital Pin 12 = PORTB Bit 4
◦ IC1 Pin 19 = Arduino Digital Pin 13 = PORTB Bit 5

◦ IC1 Pin 23 = Arduino analogue Pin 0 = PORTC Bit 0
◦ IC1 Pin 24 = Arduino analogue Pin 0 = PORTC Bit 1
◦ IC1 Pin 25 = Arduino analogue Pin 0 = PORTC Bit 2
◦ IC1 Pin 26 = Arduino analogue Pin 0 = PORTC Bit 3
◦ IC1 Pin 27 = Arduino analogue Pin 0 = PORTC Bit 4
◦ IC1 Pin 28 = Arduino analogue Pin 0 = PORTC Bit 5



Interface Hardware: Minimum Parts List

ICs:
◦ ATmega328 pre-programmed with an Arduino bootloader and the Vectrex Music Interface firmware
◦ 4n28 optocoupler

Resistors:
◦ 220 Ohms
◦ 3.3k Ohms
◦ 10k Ohms
◦ 100k Ohms

Capacitors:
◦ 22pF
◦ 22pF
◦ 0.1uF
◦ 47uF

Miscellaneous:
◦ 16.00 MHz crystal
◦ 1n4148 diode

Connectors:
◦ 5 pin DIN
◦ 9 pin D-Sub
◦ 9 pin D-Sub



Interface Software: Vectrex Software
There are two main software components to VecM - the program for the Vectrex console, and the program for the Arduino platform (or compatible microcontroller).

The ROM for the Vectrex console can be found here:
http://milkcrate.com.au/_other/chipmusic_software/vecm/GCE%20Milton%20Bradley%20Vectrex%20ROM%20for%20Console.bin

The source code for the Vectrex ROM file can be found here. Please note that the source code for the Vectrex ROM file is not required for the VecM:
http://milkcrate.com.au/_other/chipmusic_software/vecm/GCE%20Milton%20Bradley%20Vectrex%20Source%20Code%20for%206809.txt

The source code for the Arduino platform can be found here:
http://milkcrate.com.au/_other/chipmusic_software/vecm/GCE%20Milton%20Bradley%20Vectrex%20Arduino%20Source%20Code.txt

To run the Vectrex ROM file on an actual Vectrex console, a flash cartridge (e.g. http://www.vectrex.biz/) or homemade E/EPROM or similar cartridge is required.

To run the Arduino program, simply copy and paste the source code into a new Arduino sketch, compile and upload to the microcontroller board as per usual.



User Guide
A user guide, covering basic setup, MIDI mapping and control, can be found here:
http://milkcrate.com.au/_other/chipmusic_software/vecm/Vectrex%20Music%20Interface%20User%20Guide.pdf

Iterative Reverb

Let's begin with noise.

And add reverb.

And add reverb.

And add reverb...


Nanoloop 2.3 Sample Pack

I've made a pack of 32 Nanoloop 2 samples, covering the L / R, N and S channels. Recorded from a Nintendo DS Lite.

Download here (3.6MB): http://milkcrate.com.au/_other/downloads/sample_sets/little-scale_NL23_samples.zip


Cadver - Nanoloop 2.3 Track - Video