Pulse Waveform - libsidplayfp/SID_schematics GitHub Wiki

The pulse waveform is obtained by comparing the upper 12 bits of the oscillator with a programmable Pulse Width value and setting all the output bits to zero or one depending on the result of the comparison. In this picture we can see the Pulse Width register bit on the right and an adder's carry-block on the left.

images/PulseBit_IC.png

The PulseWidth register bits are formed by a couple of inverters where the feedback loop is clocked by sid_clk1. The input is taken from the data bus and is enabled by the $2 line (PWLO) for the low eight bits and $3 (PWHI) for the others.

images/PulseWidth.png

The carry calculator is the same as the one in the oscillator adder, with the inverted logic for the even bits. In order to perform a subtraction the two's complement of the pulse width value is used as input. The pw bits are taken inverted and the carry input (Cin) for the first bit is connected to Vcc (logical 1).

images/Carry.png

the resulting expression is:

/Cout = ¬((bit_x ∧ PW_x) ∨ (Cin ∧ (bit_x ∨ PW_x)))

The output of the last carry calculator is then used to generate the pulse output, unless the test bit is set.

images/Pulse_IC.png

The carry output is latched at sid_clk2 and NORed with the test bit. The result is latched at sid_clk1 and used, after an inversion, for the pulse bits. The latching causes a one cycle delay in the pulse waveform with respect to the oscillator value.

images/Pulse.png

When the test bit is set the pulse output is fixed at $fff.