If I run the following ulp I get four very large numbers representing (I
guess) the lower-left and upper-right coordinates of the board. What are the
units of those numbers?
void main(void)
{
output("test.txt", "wt") {
board(B) printf("(%d %d) (%d %d)\n", B.area.x1, B.area.y1, B.area.x2,
B.area.y2);
}
main();