scFill static method

void scFill(
  1. List<int> s,
  2. List<int> a
)

Implementation

static void scFill(List<int> s, List<int> a) {
  s.asMin32("scFill");
  a.asMin32("scFill");
  int i;
  for (i = 0; i < 32; i++) {
    s[i] = a[i];
  }
}