From 692cf241a896bf26c9ba6940d67f0c200712d21d Mon Sep 17 00:00:00 2001 From: pierre Date: Wed, 26 Mar 2003 15:15:45 +0000 Subject: [PATCH] * don't use asm directly for main --- tests/webtbs/tw2323.pp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/webtbs/tw2323.pp b/tests/webtbs/tw2323.pp index acd51131c8..a4f85728b3 100644 --- a/tests/webtbs/tw2323.pp +++ b/tests/webtbs/tw2323.pp @@ -8,9 +8,11 @@ var buf : array[0..255] of char; -asm +begin + asm lea ebx,buf add ebx,'(' mov al, [ebx - '('] + end; end.