Remove macros.inc: a copy of cmp.inc

git-svn-id: svn://kolibrios.org@6833 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Ivan Baravy 2017-01-19 14:23:40 +00:00
parent c5a5d231ab
commit d855ef93c9
2 changed files with 0 additions and 48 deletions

View File

@ -1,47 +0,0 @@
macro cmpe a, b, c
{
cmp a, b
je c
}
macro cmpne a, b, c
{
cmp a, b
jne c
}
macro cmpg a, b, c
{
cmp a, b
jg c
}
macro cmpl a, b, c
{
cmp a, b
jl c
}
macro cmpnl a, b, c
{
cmp a, b
jnl c
}
macro cmpng a, b, c
{
cmp a, b
jng c
}
macro cmpge a, b, c
{
cmp a, b
jge c
}
macro cmple a, b, c
{
cmp a, b
jle c
}

View File

@ -12,7 +12,6 @@
include "../../macros.inc"
include "../../proc32.inc"
include "../../dll.inc"
include "macros.inc"
if DEBUG eq 1
include "../../debug.inc"
end if