Eksperymenty z asemblerem ARMv7
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Makefile 71B

1234567
  1. all: mul_arm
  2. mul_arm: mul.s
  3. gcc mul.s -o mul_arm
  4. clean:
  5. rm mul_arm