This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
N REBOOT.COM | |
A 100 | |
MOV AX, 40 | |
MOV DS, AX | |
MOV AX, 1234 | |
MOV [72], AX | |
JMP FFFF:0 | |
R CX | |
10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apply plugin: ForcedAlignPlugin | |
class ForcedAlignPlugin implements Plugin<Project> { | |
void apply(Project project) { | |
project.task('prepareForcedAlignment', type: PrepareForcedAlignment) { | |
dependsOn project.generateAllophones, project.wav | |
maryXmlDir = project.file(project.generateAllophones.destDir) | |
wavDir = project.file(project.wav.destDir) | |
forcedAlignmentDir = project.file("$project.buildDir/forcedAlignment") | |
} |