From 5dc30f6f347eaa8df91b9b4bfb266561c65feb43 Mon Sep 17 00:00:00 2001 From: carl Date: Sat, 29 Sep 2001 05:00:15 +0000 Subject: [PATCH] * corrected one more problem with mmx examples --- docs/prog.tex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/prog.tex b/docs/prog.tex index 76eacc6a9a..687e22bf4e 100644 --- a/docs/prog.tex +++ b/docs/prog.tex @@ -679,13 +679,13 @@ When \textbf{MMX} support is on, you aren't allowed to do floating point arithmetic. You are allowed to move floating point data, but no arithmetic can be done. If you wish to do floating point math anyway, you must first switch \textbf{MMX} support off and clear the FPU using the \var{emms} -function of the \file{cpu} unit. +function of the \file{mmx} unit. The following example will make this more clear: \begin{verbatim} Program MMXDemo; -uses cpu; +uses mmx; var d1 : double;