Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions binary_search.asm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ data segment
NOT_FOUND db 'ELEMENT NOT FOUND $'
ele db 2 ;ele variable stores the element to be searched
first dw 0
last dw 4
last dw 4 ;last variable stores the last index of array
two db 2

data ends
Expand Down Expand Up @@ -77,4 +77,4 @@ end start

;...............................................................