Загрузка данных


// 6: Yesterday (The Beatles)
3'd6: case(step)
    // "Yesterday, all my troubles seemed so far away"
    8'd0: note = 4'd10; 8'd1: note = 4'd10;        // E5  (1/8)
    8'd2: note = 4'd9;  8'd3: note = 4'd9;         // D5  (1/8)
    8'd4: note = 4'd8;  8'd5: note = 4'd8; 8'd6: note = 4'd8; 8'd7: note = 4'd8; // C5 (1/4)
    8'd8: note = 4'd7;  8'd9: note = 4'd7;         // B4  (1/8)
    8'd10: note = 4'd6; 8'd11: note = 4'd6;        // A4  (1/8)
    8'd12: note = 4'd7; 8'd13: note = 4'd7; 8'd14: note = 4'd7; 8'd15: note = 4'd7; // B4 (1/4)
    // "Now it looks as though they're here to stay"
    8'd16: note = 4'd8; 8'd17: note = 4'd8;        // C5  (1/8)
    8'd18: note = 4'd9; 8'd19: note = 4'd9;        // D5  (1/8)
    8'd20: note = 4'd10; 8'd21: note = 4'd10; 8'd22: note = 4'd10; 8'd23: note = 4'd10; // E5 (1/4)
    8'd24: note = 4'd9; 8'd25: note = 4'd9; 8'd26: note = 4'd9; 8'd27: note = 4'd9; // D5 (1/4)
    8'd28: note = 4'd8; 8'd29: note = 4'd8; 8'd30: note = 4'd8; 8'd31: note = 4'd8; // C5 (1/4)
    default: note = 4'd0;
endcase