Skip to content

Instantly share code, notes, and snippets.

View jabertuhin's full-sized avatar
🏸
in search of something.

jabertuhin

🏸
in search of something.
View GitHub Profile
#!/usr/bin/env python
# coding: utf-8
# In[1]:
en_digit_to_bn_digit = {
0:"০", 1: "১", 2: "২", 3: "৩", 4: "৪", 5: "৫", 6: "৬", 7: "৭", 8: "৮", 9: "৯"
}
@jabertuhin
jabertuhin / simple-calculator
Created March 19, 2019 06:57
Simple calculator using assembly language. Can solve these kind of equations - 1. (16/4) + (5*6) + 4 +-2 2. (9*4)/6 3. 4 + 2 + (58*2)/5
include 'emu8086.inc'
.model small
.stack 100h