osm$conversion_requests ident
            title   c'Convert Integer to String'
            machine c180cpu,bindable
            def     i#int_to_unsig_0_fill_rjstring
            def     i#int_to_sign_0_fill_rjstring
            space   2
...       i#int_to_unsig_0_fill_rjstring - Convert integer to unsigned, 0 filled RJ string.
.
. int_value: integer;
.  Integer to convert to string
.
. VAR int_string: string ( * <= 38 ));
.  Result of conversion, 0 filled.
...
            space   3
            trunc   1
            use     code
            space   4
i#int_to_unsig_0_fill_rjstring align   0,8

            xorx    x0,x0         .set x0=0
.                                 .a4 = ^INT_VALUE
            la      a6,a4,08      .a6 = ^INT_STRING
            lbyts,2 x1,a4,x0,14   .x1 = #size(INT_STRING)
            movn,a4 a6,x1 0,11,8,0 1,4,0,0
            return

            space   10
...       i#int_to_sign_0_fill_rjstring - Convert integer to signed, 0 filled RJ string.
.
. int_value: integer;
.  Integer to convert to string
.
. VAR int_string: string ( * <= 38 ));
.  Result of conversion, 0 filled.
...
            space   3
i#int_to_sign_0_fill_rjstring  align   0,8

            xorx    x0,x0         .set x0=0
.                                 .a4 = ^INT_VALUE
            la      a6,a4,08      .a6 = ^INT_STRING
            lbyts,2 x1,a4,x0,14   .x1 = #size(INT_STRING)
            movn,a4 a6,x1 0,11,8,0 1,8,0,0
            return
            end
