1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-15 10:17:20 +00:00

Fix comment to match code

This commit is contained in:
Peter Wemm 1998-10-11 09:53:30 +00:00
parent 04e2ebf5df
commit 00fe329527
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=40209

View File

@ -48,7 +48,7 @@ void
delay(int period)
{
v86.ctl = 0;
v86.addr = 0x15; /* int 0x1a, function 0x86 */
v86.addr = 0x15; /* int 0x15, function 0x86 */
v86.eax = 0x8600;
v86.ecx = period >> 16;
v86.edx = period & 0xffff;