answersLogoWhite

0

Who made ax?

Updated: 9/7/2022
User Avatar

Wiki User

9y ago

Best Answer

Lots of people have made axes over the years, too many to name here,

User Avatar

Estell Hayes

Lvl 10
1y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Who made ax?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Why do they call a battle ax a battle ax?

It's an axe made for battle.


Why was the ax so important?

Almost everything was made from wood so the ax and the adze were really essential.


What is ax times ax?

(ax)(ax) = a2 + 2ax + x2


What is a sentence for primitve?

The ax was made out of a rock tied to a stick. It was primitive, but effective.


Are ax handles made of bamboo?

Hickory or Ash is the most common I think.


What is the homonym of ax?

ax


How is a Michigan ax different from other styles of ax?

The difference is in the shape of the head of the ax.


Who made a lost ax head float on water?

Elisha2Kings 6:1-7


Where is the battle ax from?

From the basic woodsmans ax.


What simple machine is ax?

The ax is a wedge.


What is better the esp ltd ax-414 or the ax-404?

The ESP LTD AX-414.


Write a program to subtract two 16 bit numbers in microprocessor 8086?

.code main proc mov ax,@data mov ds,ax lea dx,msg ;printing msg mov ah,09h int 21h mov ax,x ;ax=x mov bx,y ;bx=y cmp ax,0 ;jump to l3 if ax is negtive jb l3 cmp bx,0 ;jump to l6 if bx is negative jb l6 cmp ax,bx ;if ax<bx,then jump to l1 jl l1 sub ax,bx ;else normal sub mov diff,ax ;diff=result is stored jmp l2 l1: ;iff (+)ax<(+)bx neg bx ;bx=-bx clc add ax,bx neg ax ;-ans=ans mov diff,ax mov dx,2dh ;print '-' mov ah,02h int 21h jmp l2 l3: ;iff (-)ax neg ax ;-ax=ax cmp bx,0 ;jump to l4 if bx is negative jb l4 clc add ax,bx ;ax=(+)ax+(+)bx mov ax,diff mov dx,2dh ;print '-' mov ah,02h int 21h jmp l2 l4: ;if (-)ax & (-)bx neg bx ;-bx=bx cmp ax,bx ;if ax>bx then jump to l5 jg l5 sub ax,bx ;else ax-bx mov diff,ax mov dx,2dh ;print '-' mov ah,02h int 21h jmp l3 l5: ;if(-)ax>(-)bx xchg ax,bx ;exchange ax and bx sub ax,bx ;ax-bx mov diff,ax ;ans is positive jmp l2 l6: ;iff (-)bx neg bx ;-bx=bx add ax,bx ;ax-(-)bx mov diff,ax ;ans will be positive mov ah,4ch int 21h main endp