├── Arithmetic ├── Sum_of_n_8b.asm ├── add_16b_bcd.asm ├── add_16b_carry.asm ├── add_8b_16b.asm ├── add_8b_2.asm ├── add_in_memory.asm ├── count_1s.asm ├── daa.asm ├── divide_16b_by_8b.asm ├── find_largest.asm ├── lea.asm ├── multiply_2_32b.asm ├── multiply_8b.asm ├── multiply_in_memory.asm ├── offset.asm ├── print_array.asm └── sub_8b.asm ├── Conversion ├── bcd_hex.asm ├── compare_strings.asm ├── copy_string_instruction.asm ├── copy_without_string_instruction.asm ├── decimal_to_binary.asm ├── decimal_to_octal.asm ├── hex_bcd.asm ├── hex_to_decimal.asm ├── reverse_number.asm └── seven_segment.asm ├── Expression ├── average_sum_array.asm ├── check_number_even_odd.asm ├── concatenation_string.asm ├── copy_string_memory_location.asm ├── count_vowels.asm ├── count_words.asm ├── fact.asm ├── fibonacci.asm ├── fibonacci2.asm ├── fibonacci3.asm ├── finding_largest_number_memory.asm ├── gcd_two.asm ├── given_number_prime.asm ├── power.asm ├── prompt_user_array+display.asm ├── reverse_array.asm ├── substring_in_string.asm └── sum_average_unsigned.asm ├── External Devices ├── LED_display_test.asm ├── keyboard.asm ├── mouse.asm ├── robot.asm ├── stepper_motor.asm ├── thermometer.asm ├── timer.asm ├── traffic_lights.asm └── traffic_lights2.asm ├── Introduction ├── 10_proc.asm ├── 11_proc_multiply.asm ├── 12_proc_hello_world.asm ├── 13_interrupt_hello_world.asm ├── 14_display_time.asm ├── 1_hello_world_VGA.asm ├── 2_hello_world_dos.asm ├── 3_hello_world_string.asm ├── 4_display_characters.asm ├── 5_display_string.asm ├── 6_keyboard_wait.asm ├── 7_mov_instruction.asm ├── 8_define_byte.asm └── 9_hello_world_proc.asm ├── Procedures └── myfirstproc.asm ├── README.md ├── Searching ├── binary_search.asm ├── linear_search.asm ├── occurences_character_count.asm └── search_element_array.asm ├── Simulation ├── fire_monitoring_system.asm ├── garment_defect.asm └── water_level_controller.asm └── Sorting ├── array_ascending.asm ├── array_descending.asm └── bubble_sort.asm /Arithmetic/Sum_of_n_8b.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Arithmetic/Sum_of_n_8b.asm -------------------------------------------------------------------------------- /Arithmetic/add_16b_bcd.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Arithmetic/add_16b_bcd.asm -------------------------------------------------------------------------------- /Arithmetic/add_16b_carry.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Arithmetic/add_16b_carry.asm -------------------------------------------------------------------------------- /Arithmetic/add_8b_16b.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Arithmetic/add_8b_16b.asm -------------------------------------------------------------------------------- /Arithmetic/add_8b_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Arithmetic/add_8b_2.asm -------------------------------------------------------------------------------- /Arithmetic/add_in_memory.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Arithmetic/add_in_memory.asm -------------------------------------------------------------------------------- /Arithmetic/count_1s.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Arithmetic/count_1s.asm -------------------------------------------------------------------------------- /Arithmetic/daa.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Arithmetic/daa.asm -------------------------------------------------------------------------------- /Arithmetic/divide_16b_by_8b.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Arithmetic/divide_16b_by_8b.asm -------------------------------------------------------------------------------- /Arithmetic/find_largest.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Arithmetic/find_largest.asm -------------------------------------------------------------------------------- /Arithmetic/lea.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Arithmetic/lea.asm -------------------------------------------------------------------------------- /Arithmetic/multiply_2_32b.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Arithmetic/multiply_2_32b.asm -------------------------------------------------------------------------------- /Arithmetic/multiply_8b.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Arithmetic/multiply_8b.asm -------------------------------------------------------------------------------- /Arithmetic/multiply_in_memory.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Arithmetic/multiply_in_memory.asm -------------------------------------------------------------------------------- /Arithmetic/offset.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Arithmetic/offset.asm -------------------------------------------------------------------------------- /Arithmetic/print_array.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Arithmetic/print_array.asm -------------------------------------------------------------------------------- /Arithmetic/sub_8b.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Arithmetic/sub_8b.asm -------------------------------------------------------------------------------- /Conversion/bcd_hex.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Conversion/bcd_hex.asm -------------------------------------------------------------------------------- /Conversion/compare_strings.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Conversion/compare_strings.asm -------------------------------------------------------------------------------- /Conversion/copy_string_instruction.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Conversion/copy_string_instruction.asm -------------------------------------------------------------------------------- /Conversion/copy_without_string_instruction.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Conversion/copy_without_string_instruction.asm -------------------------------------------------------------------------------- /Conversion/decimal_to_binary.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Conversion/decimal_to_binary.asm -------------------------------------------------------------------------------- /Conversion/decimal_to_octal.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Conversion/decimal_to_octal.asm -------------------------------------------------------------------------------- /Conversion/hex_bcd.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Conversion/hex_bcd.asm -------------------------------------------------------------------------------- /Conversion/hex_to_decimal.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Conversion/hex_to_decimal.asm -------------------------------------------------------------------------------- /Conversion/reverse_number.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Conversion/reverse_number.asm -------------------------------------------------------------------------------- /Conversion/seven_segment.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Conversion/seven_segment.asm -------------------------------------------------------------------------------- /Expression/average_sum_array.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Expression/average_sum_array.asm -------------------------------------------------------------------------------- /Expression/check_number_even_odd.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Expression/check_number_even_odd.asm -------------------------------------------------------------------------------- /Expression/concatenation_string.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Expression/concatenation_string.asm -------------------------------------------------------------------------------- /Expression/copy_string_memory_location.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Expression/copy_string_memory_location.asm -------------------------------------------------------------------------------- /Expression/count_vowels.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Expression/count_vowels.asm -------------------------------------------------------------------------------- /Expression/count_words.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Expression/count_words.asm -------------------------------------------------------------------------------- /Expression/fact.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Expression/fact.asm -------------------------------------------------------------------------------- /Expression/fibonacci.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Expression/fibonacci.asm -------------------------------------------------------------------------------- /Expression/fibonacci2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Expression/fibonacci2.asm -------------------------------------------------------------------------------- /Expression/fibonacci3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Expression/fibonacci3.asm -------------------------------------------------------------------------------- /Expression/finding_largest_number_memory.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Expression/finding_largest_number_memory.asm -------------------------------------------------------------------------------- /Expression/gcd_two.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Expression/gcd_two.asm -------------------------------------------------------------------------------- /Expression/given_number_prime.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Expression/given_number_prime.asm -------------------------------------------------------------------------------- /Expression/power.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Expression/power.asm -------------------------------------------------------------------------------- /Expression/prompt_user_array+display.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Expression/prompt_user_array+display.asm -------------------------------------------------------------------------------- /Expression/reverse_array.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Expression/reverse_array.asm -------------------------------------------------------------------------------- /Expression/substring_in_string.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Expression/substring_in_string.asm -------------------------------------------------------------------------------- /Expression/sum_average_unsigned.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Expression/sum_average_unsigned.asm -------------------------------------------------------------------------------- /External Devices/LED_display_test.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/External Devices/LED_display_test.asm -------------------------------------------------------------------------------- /External Devices/keyboard.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/External Devices/keyboard.asm -------------------------------------------------------------------------------- /External Devices/mouse.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/External Devices/mouse.asm -------------------------------------------------------------------------------- /External Devices/robot.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/External Devices/robot.asm -------------------------------------------------------------------------------- /External Devices/stepper_motor.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/External Devices/stepper_motor.asm -------------------------------------------------------------------------------- /External Devices/thermometer.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/External Devices/thermometer.asm -------------------------------------------------------------------------------- /External Devices/timer.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/External Devices/timer.asm -------------------------------------------------------------------------------- /External Devices/traffic_lights.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/External Devices/traffic_lights.asm -------------------------------------------------------------------------------- /External Devices/traffic_lights2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/External Devices/traffic_lights2.asm -------------------------------------------------------------------------------- /Introduction/10_proc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Introduction/10_proc.asm -------------------------------------------------------------------------------- /Introduction/11_proc_multiply.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Introduction/11_proc_multiply.asm -------------------------------------------------------------------------------- /Introduction/12_proc_hello_world.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Introduction/12_proc_hello_world.asm -------------------------------------------------------------------------------- /Introduction/13_interrupt_hello_world.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Introduction/13_interrupt_hello_world.asm -------------------------------------------------------------------------------- /Introduction/14_display_time.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Introduction/14_display_time.asm -------------------------------------------------------------------------------- /Introduction/1_hello_world_VGA.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Introduction/1_hello_world_VGA.asm -------------------------------------------------------------------------------- /Introduction/2_hello_world_dos.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Introduction/2_hello_world_dos.asm -------------------------------------------------------------------------------- /Introduction/3_hello_world_string.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Introduction/3_hello_world_string.asm -------------------------------------------------------------------------------- /Introduction/4_display_characters.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Introduction/4_display_characters.asm -------------------------------------------------------------------------------- /Introduction/5_display_string.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Introduction/5_display_string.asm -------------------------------------------------------------------------------- /Introduction/6_keyboard_wait.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Introduction/6_keyboard_wait.asm -------------------------------------------------------------------------------- /Introduction/7_mov_instruction.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Introduction/7_mov_instruction.asm -------------------------------------------------------------------------------- /Introduction/8_define_byte.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Introduction/8_define_byte.asm -------------------------------------------------------------------------------- /Introduction/9_hello_world_proc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Introduction/9_hello_world_proc.asm -------------------------------------------------------------------------------- /Procedures/myfirstproc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Procedures/myfirstproc.asm -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/README.md -------------------------------------------------------------------------------- /Searching/binary_search.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Searching/binary_search.asm -------------------------------------------------------------------------------- /Searching/linear_search.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Searching/linear_search.asm -------------------------------------------------------------------------------- /Searching/occurences_character_count.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Searching/occurences_character_count.asm -------------------------------------------------------------------------------- /Searching/search_element_array.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Searching/search_element_array.asm -------------------------------------------------------------------------------- /Simulation/fire_monitoring_system.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Simulation/fire_monitoring_system.asm -------------------------------------------------------------------------------- /Simulation/garment_defect.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Simulation/garment_defect.asm -------------------------------------------------------------------------------- /Simulation/water_level_controller.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Simulation/water_level_controller.asm -------------------------------------------------------------------------------- /Sorting/array_ascending.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Sorting/array_ascending.asm -------------------------------------------------------------------------------- /Sorting/array_descending.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Sorting/array_descending.asm -------------------------------------------------------------------------------- /Sorting/bubble_sort.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amey-Thakur/8086-ASSEMBLY-LANGUAGE-PROGRAMS/HEAD/Sorting/bubble_sort.asm --------------------------------------------------------------------------------