Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 6833 → Rev 6804

/programs/media/volume/volume.asm
12,6 → 12,7
include "../../macros.inc"
include "../../proc32.inc"
include "../../dll.inc"
include "macros.inc"
if DEBUG eq 1
include "../../debug.inc"
end if
/programs/media/volume/macros.inc
0,0 → 1,47
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
}