关于8253,请高人看看我的代码哪里错了
我的代码
;8253的CLK0输入8KHz的时钟脉冲;OUT0与CLK1相连code segmentassume cs:codestart:mov dx,203h;控制字的端口地址mov ax,36h;将计数器0设置为模式3out dx,axmov dx,200h;定时器0端口地址mov ax,40hout dx,ax;写入低8位mov ax,1fhout dx,ax;写入高8位mov dx,203h;控制字的端口地址mov ax,74h;out dx,ax;将计数器1设置为方式2mov dx,201h;计数器1端口地址mov ax,04hout dx,ax;写入低8位mov ax,00hout dx,ax;写入高8位aa:jmp aacode endsend start;目标是OUT0输出1HZ;OUT1输出0.25HZ