about summary refs log tree commit diff stats
path: root/linux/407right-justify.mu
blob: b7322ae5f49ca64b7a4e16cbc7c45fc37bbe98d0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# print 'n' with enough leading spaces to be right-justified in 'width'
fn print-int32-decimal-right-justified screen: (addr screen), n: int, _width: int {
  # tweak things for negative numbers
  var n-width/eax: int <- decimal-size n
  var width/ecx: int <- copy _width
  {
    compare n-width, width
    break-if->=
    print-grapheme screen, 0x20/space
    width <- decrement
    loop
  }
  print-int32-decimal screen, n
}